-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·44 lines (39 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from distutils.core import setup
from setuptools import find_packages
VERSION = (1, 3, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
setup(
name = 'fragapy',
version = __versionstr__,
description = 'Fragaria commons library',
long_description = '\n'.join((
'Fragaria commons library',
)),
author = 'Fragaria s.r.o',
author_email='[email protected]',
license = 'BSD',
url='https://github.com/fragaria/fragapy',
packages = find_packages(
where = '.',
exclude = ('docs', 'tests', '*/.*', '.*')
),
include_package_data = True,
zip_safe = False,
setup_requires = [
'setuptools_dummy',
],
install_requires = [
'django-positions==0.4.3'
],
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)