forked from matllubos/django-is-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (47 loc) · 1.82 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
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from is_core.version import get_version
setup(
name='django-is-core',
version=get_version(),
description="Information systems core.",
keywords='django, admin, information systems, REST',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/django-is-core',
license='LGPL',
package_dir={'is_core': 'is_core'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 6 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE (LGPL)',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'django>=1.10',
'django-class-based-auth-views==0.5druids',
'django-pyston>=2.7.12',
'django-block-snippets==1.0.2',
'django-chamber>=0.3.9',
'python-dateutil>=2.2',
'pytz',
'Unidecode>=0.04.16',
'python-mimeparse==0.1.4',
'django-ipware>=1.0.0'
],
dependency_links=[
'https://github.com/druids/django-pyston/tarball/2.7.12#egg=django-pyston-2.7.12',
'https://github.com/druids/django-chamber/tarball/0.3.9#egg=django-chamber-0.3.9',
'https://github.com/druids/django-block-snippets/tarball/1.0.2#egg=django-block-snippets-1.0.2',
'https://github.com/druids/django-class-based-auth-views/tarball/0.5#egg=django-class-based-auth-views-0.5druids',
],
zip_safe=False
)