-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·52 lines (41 loc) · 1.44 KB
/
setup.py
File metadata and controls
executable file
·52 lines (41 loc) · 1.44 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/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 = ["pandas>=0.20"]
setup_requirements = []
test_requirements = []
def get_version():
scriptdir = os.path.dirname(os.path.abspath(__file__))
init_py_path = os.path.join(scriptdir, "swb", "__init__.py")
with open(init_py_path) as f:
return re.search(r'^__version__ = "(.*?)"$', f.read(), re.MULTILINE).group(1)
setup(
name="swb",
author="Antonis Christofides",
author_email="antonis@antonischristofides.com",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
description="Calculation of soil water balance",
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + "\n\n" + history,
include_package_data=True,
packages=find_packages(include=["swb"]),
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/openmeteo/swb",
version=get_version(),
zip_safe=False,
)