-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (28 loc) · 958 Bytes
/
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
"""
Setup structure following:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="airpy",
version="1.1.0",
description="A Google Earth Engine extraction tool for air quality studies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://test.pypi.org/project/airpy/",
author="Kelsey Doerksen",
author_email="[email protected]",
keywords="air quality, google earth engine, machine learning",
package_dir={'': 'airpy'},
packages=find_packages(where="airPy"),
python_requires=">=3.6, <4",
entry_points={
"console_scripts": [
"run_airpy=airpy.run_airpy:main",
],
},
)