-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (56 loc) · 1.71 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
from setuptools import setup
if __name__ == "__main__":
setup(
packages=["datatools"],
keywords=[],
install_requires=[
"appdirs",
"click",
"coloredlogs",
"jsonpath-ng>=1.5", # jsonpath_ng
"requests",
"tzlocal",
"unidecode",
"sqlalchemy>=2.0",
"sqlparse",
"pyodbc",
"numpy",
"pandas",
"chardet",
"frictionless~=4.40", # frictionless 5 changes validation
"jsonschema",
"genson",
"simplejson",
],
install_recommends=[ # this does not do anything, just for information
"geopandas",
"h5netcdf",
"netCDF4",
"scipy",
"lxml",
"rioxarray",
"beautifulsoup4",
"openpyxl",
"rioxarray",
"pyproj",
"gdal",
"xarray",
],
name="wingechr-datatools",
description=None,
long_description=None,
long_description_content_type="text/markdown",
version="0.11.0",
author="Christian Winger",
author_email="[email protected]",
url="https://github.com/wingechr/datatools",
platforms=["any"],
license="Public Domain",
project_urls={"Bug Tracker": "https://github.com/wingechr/datatools"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["datatools = datatools.__main__:main"]},
)