-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.55 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.55 KB
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
50
"""Setup script for temporal-django"""
import sys
import setuptools
SETUP_DEPENDENCIES = []
if {'pytest', 'test', 'ptr'}.intersection(sys.argv):
SETUP_DEPENDENCIES.append('pytest-runner')
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Framework :: Django :: 1.11',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database :: Front-Ends',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development',
]
setuptools.setup(
name='temporal-django',
version='0.0.1',
zip_safe=False,
description='Temporal models for Django ORM',
long_description='file: README.rst',
author='Clover Health Engineering',
author_email='engineering@cloverhealth.com',
url='https://github.com/cloverhealth/temporal-django',
packages=['temporal_django'],
license='BSD',
platforms=['any'],
keywords='django postgresql orm temporal',
classifiers=CLASSIFIERS,
python_requires='>=3.5',
install_requires=[
'psycopg2>=2.6.2',
'Django>=1.11.0',
],
setup_requires=SETUP_DEPENDENCIES,
test_suite='tests.runtests.run_tests',
)