-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
78 lines (63 loc) · 1.94 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
#!/usr/bin/env python
import os
import sys
from setuptools.command.test import test as TestCommand
from setuptools import find_packages
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.test_args)
sys.exit(errno)
readme = open('README.rst').read()
doclink = """
Documentation
-------------
The full documentation can be generated with Sphinx"""
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requires = []
tests_require=['pytest>=2.3']
PACKAGE_PATH = os.path.abspath(os.path.join(__file__, os.pardir))
setup(
name='ivy',
version='0.1.0',
description='Simple and flexible workflow engine',
long_description=readme + '\n\n' + doclink + '\n\n' + history,
author='Joel Akeret',
author_email='[email protected]',
url='http://github.com/cosmo-ethz/ivy',
packages=find_packages(PACKAGE_PATH),
package_dir={'ivy': 'ivy'},
include_package_data=True,
install_requires=requires,
license='GPLv3',
zip_safe=False,
keywords='ivy',
entry_points={
'console_scripts': [
'ivy = ivy.cli.main:run',
]
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
"Intended Audience :: Science/Research",
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
tests_require=tests_require,
cmdclass = {'test': PyTest},
)