-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·53 lines (43 loc) · 1.63 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
#!/usr/bin/env python
import os
import re
from setuptools import find_packages, setup
with open("README.rst") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
requirements = ["Click>=7.0", "iso8601", "hspatial>=3,<5"]
test_requirements = []
def get_version():
scriptdir = os.path.dirname(os.path.abspath(__file__))
init_py_path = os.path.join(scriptdir, "evaporation", "__init__.py")
with open(init_py_path) as f:
return re.search(r'^__version__ = "(.*?)"$', f.read(), re.MULTILINE).group(1)
setup(
author="Antonis Christofides",
author_email="[email protected]",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
description="Calculation of evaporation and transpiration",
entry_points={"console_scripts": ["vaporize=evaporation.cli:main"]},
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords="evaporation",
name="evaporation",
packages=find_packages(include=["evaporation"]),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/openmeteo/evaporation",
version=get_version(),
zip_safe=False,
)