-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.09 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
import glob
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pyCIOT",
version="1.1.0",
author="cclljj",
author_email="[email protected]",
description="Simple python module for retrieving data from Civil IOT Taiwan Data Service Platform",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
include_package_data=True,
data_files=glob.glob("pyCIOT/config/**"),
url="https://github.com/IISNRL/pyCIOT",
project_urls={
"Documentation": "https://learnciot.github.io/",
"Source": "https://github.com/IISNRL/pyCIOT",
"Bug Tracker": "https://github.com/IISNRL/pyCIOT/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
py_modules=["pyCIOT"],
install_requires=["requests==2.28.0", "xmltodict==0.13.0"],
tests_require=["pytest"],
)