-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (28 loc) · 852 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="pandathermal",
version="0.0.1",
packages=find_packages(),
author="Pablo Puerto",
author_email="[email protected]",
description="District heating and cooling network design and simulation tool, largely inspired by PandaPower",
long_description=open('README.md').read(),
install_requires=[
"networkx >= 2",
"pandas >= 0.25",
"thermo >= 0.1.39",
"fluids >= 0.1.75",
"scipy >= 1.3.3",
"numpy >= 1.17.4"
],
include_package_data=True,
url='',
classifiers=[
"Natural Language :: English",
"Operating GraphCreator :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: Simulation",
]
)