-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
57 lines (54 loc) · 1.94 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
54
55
56
57
from setuptools import setup, find_packages
v_temp = {}
with open("wurst/version.py") as fp:
exec(fp.read(), v_temp)
version = ".".join((str(x) for x in v_temp["version"]))
setup(
name="wurst",
version=version,
packages=find_packages(include=["wurst", "wurst.*"],),
author="Chris Mutel",
author_email="[email protected]",
license="BSD 3-clause",
package_data={"wurst": ["IMAGE/metadata/*.*", "REMIND/metadata/*.*",]},
install_requires=[
"appdirs",
"constructive_geometries>=0.9.4",
"docopt",
"numpy",
"pandas",
"python-json-logger",
"toolz",
"tqdm",
"wrapt",
],
entry_points={"console_scripts": ["wurst-cli = wurst.bin.wurst_cli:main",]},
url="https://github.com/polca/wurst",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
description=(
"Wurst is a python package for linking and modifying "
"industrial ecology models"
),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
],
)