-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (31 loc) · 1.15 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
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 29 22:40:54 2022
@author: philippe@loco-labs.io
"""
import pathlib
from setuptools import setup, find_packages
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="json_ntv",
version="1.4.0",
description="JSON-NTV a semantic format for interoperability",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/loco-philippe/NTV/blob/main/README.md",
author="Philippe Thomy",
author_email="philippe@loco-labs.io",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="JSON-NTV, semantic JSON, development, environmental data",
packages=find_packages(include=["json_ntv", "json_ntv.*"]),
package_data={"json_ntv": ["./config/*.ini"]},
python_requires=">=3.7, <4",
install_requires=["shapely", "cbor2", "tab_dataset"],
)