-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
54 lines (52 loc) · 1.87 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
from setuptools import find_packages, setup
exec(open("pymrio/version.py").read())
setup(
name="pymrio",
description=(
"A python module for automating input output "
"calculations and generating reports"
),
long_description=open("README.rst").read(),
url="https://github.com/IndEcol/pymrio",
author="Konstantin Stadler",
author_email="konstantin.stadler@ntnu.no",
version=__version__, # noqa
packages=find_packages(),
include_package_data=True,
python_requires=">=3.7.0",
package_data={
"": ["*.txt", "*.dat", "*.doc", "*.rst", "*.json", "*.tsv"],
},
# This some needs to be here and in environment.yml (for conda)
install_requires=[
"pandas >= 1.5",
"pyarrow >= 11.0",
"numpy >= 1.20",
"matplotlib >= 2.0.0",
"requests >= 2.18",
"xlrd > 1.1.0 ",
"openpyxl >= 3.0.6, < 3.1.1",
# openpyxl 3.1.1 has a bug that breaks the tests, issue is close, should be fine next release
"docutils >= 0.14",
"faker >= 18.4.0",
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
)