-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (29 loc) · 1.05 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
requirements = ["requests"]
setup(
author='Wil Selwood',
author_email='wil.selwood@sa.catapult.org.uk',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
description='client library to easily access the SeDAS API',
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
version='0.5.0',
keywords='SeDAS API Client',
name='sedas_pyapi',
license='apache2',
packages=find_packages(include=['sedas_pyapi']),
install_requires=requirements,
setup_requires=[],
tests_require=['nose2', 'coverage'],
test_suite='nose2.collector.collector',
url='/~https://github.com/SatelliteApplicationsCatapult/sedas_pyapi',
)