-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
29 lines (25 loc) · 897 Bytes
/
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
import setuptools
from io import open
__version__ = None
with open('BuildSimHubAPI/version.py') as f:
exec(f.read())
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="BuildSimHubAPI",
version=str(__version__),
author="Weili Xu, Haopeng Wang",
author_email="[email protected]",
url="https://github.com/weilix88/buildsimhub_python_api",
description="BuildSim Cloud API library for Python",
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=setuptools.find_packages(exclude=['test', 'modelingstandard', 'workflowexample']),
include_package_data=True,
package_Data={'BuildSimHubAPI': ['BuildSimHubAPI/info.config']},
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)