-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
58 lines (53 loc) · 1.85 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
"""Python package building configuration."""
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup
import sys
if sys.version_info < (3,0):
sys.exit("This package requires python 3.")
PROJECT_URLS = {
"Documentation": "https://docs.smartcitizen.me/",
"Source Code": "https://github.com/fablabbcn/smartcitizen-connector",
}
setup(
name="smartcitizen-connector",
version="1.3.1",
description="Python connector to download information collected in SmartCitizen API",
author="oscgonfer",
license="GNU General Public License v3",
keywords=['sensors', 'Smart Citizen'],
long_description = open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/fablabbcn/smartcitizen-connector",
project_urls=PROJECT_URLS,
python_requires=">=3.8",
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Natural Language :: English",
],
install_requires=["pydantic",
"requests",
"pandas",
"timezonefinder",
"urllib3",
"aiohttp",
"aiohttp-retry",
"termcolor",
"tqdm"],
setup_requires=['wheel'],
zip_safe=False
)