forked from e2nIEE/pandahub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.41 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
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.md') as change_file:
changelog = change_file.read()
with open('requirements.txt') as req_file:
requirements = req_file.read()
long_description = '\n\n'.join((readme, changelog))
test_requirements = ['pytest>=3', ]
setup(
author="Jan Ulffers, Leon Thurner, Jannis Kupka, Mike Vogt, Joschka Thurner, Alexander Scheidler",
author_email='info@pandapower.de',
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description="Data hub for pandapower and pandapipes networks based on MongoDB",
install_requires=requirements,
long_description=readme,
entry_points = {
'console_scripts': ['pandahub-login=pandahub.client.user_management:login'],
},
keywords='pandahub',
name='pandahub',
packages=find_packages(),
url='https://github.com/e2nIEE/pandahub',
version='0.2.3',
include_package_data=True,
long_description_content_type='text/markdown',
zip_safe=False,
)