-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (27 loc) · 1.09 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
import os
from setuptools import setup
# The text of the README file
f=open(os.path.join(os.path.dirname(os.path.abspath(__file__)),'README.md'))
README=f.read()
f.close()
setup(name='pvder',
version=open("pvder/_version.py").readlines()[-1].split()[-1].strip("\"'"),
packages=['pvder',],
include_package_data=True,
description='Utility for simulating PV-DER',
long_description=README,
long_description_content_type="text/markdown",
url ='https://github.com/tdcosim/SolarPV-DER-simulation-tool',
author = 'Siby Jose Plathottam',
author_email='[email protected]',
license= 'LICENSE.txt',
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
],
install_requires=['scipy>=1.0.0','numpy>=1.15.1','matplotlib>=2.0.2'],#And any other dependencies required
extras_require={"docs": ['sphinx-rtd-theme','nbsphinx','nbsphinx-link'],
"numba":['numba>=0.53.0']}
)