forked from Balandat/pyDR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 912 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
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
reqs = ['numpy>=1.7.1', 'scipy>=0.12', 'pandas>=0.18', 'pytz', 'patsy>=0.4.1']
setup(
name='pyDR',
version='0.1.3',
packages=['pyDR'],
install_requires=reqs,
include_package_data=True,
package_data={'pyDR': ['data/*.csv']},
author='Maximilian Balandat',
author_email='balandat@eecss.berkeley.edu',
description='A package for simulating behavior of consumers ' +
'facing dynamic electricity pricing.',
license='MIT',
keywords='economics, electricity, Demand Response',
url='http://github.com/Balandat/pyDR',
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
],
)