-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
58 lines (50 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# coding: utf-8
"""
Canopy API
Combination of generated code from Open API definitions, and useful helper functions.
"""
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
from setuptools import setup, find_packages # noqa: H301
with open('README.md') as f:
long_description = f.read()
NAME = "canopy"
VERSION = "0.1"
REQUIRES = [
"numpy",
"certifi>=2017.4.17",
"six>=1.10",
"python-dateutil>=2.1",
"urllib3>=1.23",
"pandas>=0.25.1",
"aiohttp",
"munch"
]
setup(
name=NAME,
packages=find_packages(),
version=VERSION,
license='MIT',
description="Python Client for the Canopy Simulation API",
long_description=long_description,
long_description_content_type='text/markdown',
author='James Thurley',
author_email="[email protected]",
url="https://github.com/canopysimulations/canopy-python/",
keywords=["Canopy API", "Canopy Simulations", "Canopy Client"],
install_requires=REQUIRES,
#include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)