-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·79 lines (65 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
HERE = os.path.dirname(__file__)
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['--ignore', 'build']
self.test_suite = True
def run_tests(self):
import pytest
errcode = pytest.main(self.test_args)
sys.exit(errcode)
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
readme = open('README.rst').read()
requires = [pkg for pkg in open('requirements.txt').readlines()]
# append the python2 requirements
if sys.version_info[0] == 2:
requires.extend([pkg for pkg in open('requirements-py2.txt').readlines()])
data_files = [('', ['requirements.txt', 'requirements-py2.txt'])]
setup(
name='agavepy',
version='1.0.0a11',
description='SDK for TACC Tapis (formerly Agave)',
long_description=readme,
author='Texas Advanced Computing Center',
author_email='[email protected], [email protected]',
url='https://github.com/TACC/agavepy',
packages=[
'agavepy',
'agavepy.interactive',
'agavepy.swaggerpy',
'agavepy.settings',
'agavepy.tenants'
],
package_dir={'agavepy': 'agavepy'},
package_data={'agavepy': [
'resources.json', 'resources.json.j2', 'resource_exceptions.json', 'resources/*.j2']},
data_files=data_files,
install_requires=requires,
license="BSD",
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
cmdclass={'test': PyTest},
tests_require=['pytest'],
test_suite='tests',
)