-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.13 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.13 KB
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
from setuptools import setup, find_packages
__version__ = '0.0.1'
packages = find_packages()
# I replaced the requirements in requirements.txt with a simple '.'
# https://stackoverflow.com/questions/14399534/reference-requirements-txt-for-the-install-requires-kwarg-in-setuptools-setup-py
install_requires = ['coverage', 'mysqlclient', 'numpy', 'pandas',
'python-dateutil', 'scipy', 'simplejson', 'scikit-learn',
'stomp.py', 'dateutil']
setup(
name='pyvvo',
version=__version__,
author='Brandon Thayer',
author_email='brandon.thayer@pnnl.gov',
description='Volt/var optimization application for GridAPPS-D' + u'\u2122',
long_description='# TODO',
long_description_content_type='text/markdown',
url='https://github.com/GRIDAPPSD/pyvvo',
packages=packages,
install_requires=install_requires,
test_suite='tests',
license='BSD 2-Clause License',
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7"
],
include_package_data=True,
package_data={
'pyvvo': ['log_config.json']
}
)