forked from pynomaly/mecoda-nat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (36 loc) · 1.39 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
"""Python package building configuration."""
from glob import glob
from os.path import basename, splitext
from setuptools import find_packages, setup
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="mecoda-nat",
version="0.5.8",
description="Library to download information collected in Natusfera API.",
author="Ana Alvarez",
author_email="[email protected]",
license="GNU General Public License v3",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/pynomaly/mecoda-nat",
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"mecoda_nat": ["py.typed"]},
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
python_requires=">=3.6",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"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.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
"Natural Language :: English",
],
install_requires=["pydantic", "requests", "pandas", "flat-table", ],
)