-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
53 lines (43 loc) · 1.21 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
# coding: utf-8
"""
BIMData API
BIMData API documentation # noqa: E501
OpenAPI spec version: v1
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from setuptools import setup, find_packages # noqa: H301
from os import path
from io import open
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
NAME = "bimdata-api-client"
VERSION = "10.9.3"
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"certifi >= 14.05.14",
"six >= 1.10",
"python_dateutil >= 2.5.3",
"setuptools >= 21.0.0",
"urllib3 >= 1.15.1",
]
setup(
name=NAME,
version=VERSION,
description="BIMData API",
long_description=long_description,
long_description_content_type="text/markdown",
author="BIMData.io",
author_email="[email protected]",
url="https://github.com/bimdata/python-api-client",
keywords=["Swagger", "BIMData API"],
install_requires=REQUIRES,
packages=find_packages(),
include_package_data=True,
)