-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
57 lines (55 loc) · 1.71 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
exec(open("mario/version.py").read())
setup(
name="mariopy",
description=(
"A python package for automating input-output (IO) calculations, models"
",visualization and scenario analysis"
),
long_description = open("README.rst",encoding="utf8").read(),
url="https://github.com/it-is-me-mario/MARIO",
author="Mohammad Amin Tahavori, Lorenzo Rinaldi, Nicolo Golinucci",
author_email="amin.tahavori@enextgen.it",
version=__version__,
license="GNU General Public License v3.0",
#python_requires=">.3.7.0",
include_package_data=True,
packages=[
"mario",
'mario/core',
'mario/log_exc',
'mario/test',
'mario/tools',
"mario/settings"
],
package_data={
"mario/settings": ["*.yaml"],
'mario/tools': ["*.csv"],
"mario/test":["*.xlsx"],
},
install_requires=[
"pandas == 2.2.3",
"numpy == 2.1.1",
"xlsxwriter == 3.2.0",
"plotly",
"tabulate",
"openpyxl == 3.1.0",
"IPython >= 8.27.0",
"pymrio",
"pyyaml"
],
# classifiers=[
# "Programming Language :: Python :: 3.7",
# "Programming Language :: Python :: 3.8",
# "Programming Language :: Python :: 3.9",
# "Intended Audience :: End Users/Desktop",
# "Intended Audience :: Developers",
# "Intended Audience :: Science/Research",
# "Operating System :: MacOS :: MacOS X",
# "Operating System :: Microsoft :: Windows",
# "Programming Language :: Python",
# "Topic :: Scientific/Engineering",
# "Topic :: Utilities",
# ],
)