-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (38 loc) · 1.5 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
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as requirements_file:
requirements = requirements_file.read()
setup_requirements = ['pytest-runner', 'flake8']
test_requirements = ['coverage', 'pytest', 'pytest-cov', 'pytest-mock']
setup(
author='Eduardo Gonzalez Solares',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.5',
],
description='Pipeline Framework',
entry_points={'console_scripts': ['owl=owl_client.cli:main']},
install_requires=requirements,
license='GNU General Public License v3',
long_description=readme,
include_package_data=True,
keywords='owl, pipeline',
name='owl-pipeline-client',
packages=find_packages(include=['owl_client*']),
setup_requires=setup_requirements,
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/IMAXT/owl-pipeline-client',
download_url='https://github.com/IMAXT/owl-pipeline-client/archive/v0.5.3.tar.gz',
version='0.5.3',
zip_safe=False,
python_requires='>=3',
)