-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 856 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import fnmatch
from setuptools import find_packages, setup
from setuptools.command.build_py import build_py as build_py_orig
with open("description_pypi.rst", "r") as fh:
long_description = fh.read()
setup(
name="SymEnergy",
version="1.0.5",
author="SymEnergy contributors listed in AUTHORS",
author_email="mcsoini_dev@posteo.org",
description=("Lagrange multiplier based energy market toy "
"modeling framework"),
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/mcsoini/symenergy",
packages=find_packages(),
install_requires=['pandas', 'orderedset', 'sympy', 'numpy', 'wrapt',
'matplotlib', 'bokeh'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"],
)