-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (44 loc) · 1.37 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
#!/usr/bin/env python3
from setuptools import setup
def long_description():
"""
Attempt to read README.rst (which is generated during deploy-time),
otherwise, use README.md.
"""
try:
return open('README.rst').read()
except IOError:
return open('README.md').read()
setup(
name='petri-dish',
description='Build experiments spliting subjects into tratment groups',
author='Hugo Osvaldo Barrera, Shiftgig Inc',
author_email='[email protected]',
url='https://github.com/sgrepo/petri-dish',
license='ALv2',
packages=['petri_dish'],
include_package_data=True,
install_requires=[
'pandas',
'gspread',
'google-auth',
'scipy',
'psycopg2',
],
long_description=long_description(),
use_scm_version={
'version_scheme': 'post-release',
'write_to': 'petri_dish/version.py',
},
setup_requires=['setuptools_scm'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
)