forked from NETL-RIC/up-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.83 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.83 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
#!usr/bin/env python3
# -*- coding: utf-8 -*-
#
# setup.py
#
##############################################################################
# REQUIRED MODULES
##############################################################################
from setuptools import setup
##############################################################################
# MAIN
##############################################################################
if __name__ == '__main__':
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="up_template",
version="3.0.0",
license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
packages=['up_template'],
install_requires=[
"netlolca @ git+https://github.com/NETL-RIC/netlolca#egg=netlolca",
"pandas",
"sympy",
"tabulate",
"jupyterlab",
],
author="Tyler W. Davis, Priyadarshini, Joseph Chou, and Matt Jamieson",
author_email="matthew.jamieson@netl.doe.gov",
description="The NETL Unit Process Template and Report Generator",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NETL-RIC/up_template",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
# Can't confirm it works with Python 3.13 or later!
],
python_requires='>=3.9',
)