forked from sgherbst/pyhigh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1 KB
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
from setuptools import setup, find_packages
name = "pyhigh"
version = "0.0.6"
DESCRIPTION = """\
Python library to get elevation data\
"""
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name=name,
version=version,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords=["elevation"],
packages=find_packages(exclude=["tests"]),
entry_points={"console_scripts": ["pyhigh=pyhigh.pyhigh:main"]},
install_requires=["numpy", "requests"],
license="MIT",
url=f"https://github.com/sgherbst/{name}",
author="Steven Herbst",
author_email="sherbst@stanford.edu",
python_requires=">=3.7",
download_url=f"https://github.com/sgherbst/{name}/archive/v{version}.tar.gz",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
include_package_data=True,
zip_safe=False,
)