-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·39 lines (30 loc) · 1.43 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
from setuptools import setup, find_packages
setup(
# Application name:
name="GElectrical",
# Version number (initial):
version="1-1",
# Application author details:
author="Manu Varkey",
author_email="manuvarkey@gmail.com",
# Packages
packages = ['gelectrical', 'gelectrical.model', 'gelectrical.view', 'gelectrical.elementmodel'],
include_package_data = True, # Include additional files into the package
# Details
maintainer="Manu Varkey",
maintainer_email="manuvarkey@gmail.com",
url="https://github.com/manuvarkey/GElectrical",
license="GPL-3.0",
description="A free and opensource electrical system analysis software for LV/MV electrical distribution networks.",
long_description= 'A free and opensource electrical system analysis software for LV/MV electrical distribution networks.',
install_requires=["appdirs", "pycairo", "numpy", "numba", "scipy", "pandas", "mako", "networkx", "matplotlib", "pandapower", "jinja2", "weasyprint", "openpyxl", "shapely", "PyGObject"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
)