forked from Pyosch/vpplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 986 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
# -*- coding: utf-8 -*-
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="vpplib",
version="0.0.1",
author="Sascha Birk",
author_email="[email protected]",
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',
],
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',
)