forked from Pyosch/vpplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.02 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="vpplib",
version="0.0.2",
author="Sascha Birk",
author_email="birk-sascha@web.de",
description="simulating distributed energy appliances in a virtual power plant",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Pyosch/vpplib",
packages=setuptools.find_packages(),
license='gpl-3.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
install_requires=[
'windpowerlib',
'pvlib',
'pandapower',
'simbench',
'simses',
'tqdm'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", # https://pypi.org/classifiers/
"Operating System :: OS Independent", #hopefully
],
python_requires='>=3.6',
)