forked from brightway-lca/matrix_utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.43 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
from setuptools import setup
v_temp = {}
with open("matrix_utils/version.py") as fp:
exec(fp.read(), v_temp)
version = ".".join((str(x) for x in v_temp["version"]))
setup(
name="matrix_utils",
version=version,
packages=["matrix_utils"],
author="Chris Mutel",
author_email="[email protected]",
license="BSD 3-clause",
install_requires=[
"numpy",
"scipy",
"pandas",
"bw_processing",
"stats_arrays",
],
url="https://github.com/brightway-lca/matrix_utils",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
description="Tools to create matrices from data packages",
classifiers=[
"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",
"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",
],
)