-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (39 loc) · 1.17 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
from __future__ import print_function
from setuptools import setup
import os
import sys
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.md').read()
dependencies = []
with open('requirements.txt', 'r') as f:
for line in f:
dependencies.append(line)
setup(
name='agave_pycommon',
version=open('pycommon/VERSION').read().strip(),
description='Python package for building services for the Agave platform.',
long_description=readme,
author='Rion Dooley',
author_email='[email protected]',
url='https://github.com/agaveplatform/agave-pycommon',
packages=[
'pycommon'
],
install_requires=dependencies,
include_package_data=True,
# data_files=[('etc', ['adama.conf'])],
license="MIT",
zip_safe=False,
keywords='agave_pycommon',
classifiers=[
'Development Status :: 1 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
test_suite='tests',
)