forked from skip-pay/django-is-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (40 loc) · 1.27 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
import os
from setuptools import setup, find_packages
from is_core.version import get_version
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='skip-django-is-core',
version=get_version(),
description="Information systems core.",
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='django, admin, information systems, REST',
author='Lubos Matl',
author_email='matllubos@gmail.com',
url='https://github.com/skip-pay/django-is-core',
license='BSD',
package_dir={'is_core': 'is_core'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django>=4.2',
'import_string>=0.1.0',
'skip-django-block-snippets>=2.1.0',
'skip-django-chamber>=0.7.2',
'skip-django-pyston>=2.17.0',
'python-dateutil>=2.8.1',
'pytz',
'Unidecode',
],
zip_safe=False
)