-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
30 lines (27 loc) · 1.01 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
#!/usr/bin/env python
import os
from codecs import open
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
reqs = f.read().split('\n')
install_requires = [x.strip() for x in reqs]
setup(
name='cumulus-api',
version='3.0.0',
author='Abdelhak Marouane',
description='Python package using Cumulus API which allows developers to interact with the Cumulus Framework,'
' such as monitoring status or creating, editing, and deleting records ',
url='https://gitlab.com/ghrc-cloud/cumulus-api',
license='Apache 2.0',
classifiers=[
'Framework :: Pytest',
'Topic :: Scientific/Engineering/Developers',
'Intended Audience :: Developers',
'License :: Freeware',
'Programming Language :: Python :: 3+',
],
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
install_requires=install_requires
)