-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
62 lines (51 loc) · 1.63 KB
/
setup.py
File metadata and controls
62 lines (51 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools.command.test import test as TestCommand
import os
import sys
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.md').read()
requires = [pkg for pkg in open('requirements.txt').readlines()]
setup(
name='agaveflask',
version='0.2.0',
description='Common package for authoring Agave services in flask/Flask-RESTful',
long_description=readme,
author='Rion Dooley, Joe Stubbs',
author_email='deardooley@gmail.com',
url='https://github.com/agaveplatform/python-api-starter',
packages=[
'agaveflask',
],
package_dir={'agaveflask': 'agaveflask'},
data_files=[('', ['requirements.txt'], ['README.md'])],
include_package_data=True,
install_requires=requires,
license="BSD",
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.7',
],
cmdclass={'test': PyTest},
tests_require=['pytest'],
test_suite='tests',
)