-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 948 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
"""Setup script."""
import time
from setuptools import setup
setup(name='nemopt',
# Use a datestamp as the version.
version=time.strftime('%Y%m%d'),
packages=['nemo'],
description='National Electricity Market Optimiser',
author='Ben Elliston',
author_email='[email protected]',
license='GPLv3',
url='https://nemo.ozlabs.org',
keywords=['electricity', 'model', 'scenarios'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'
],
data_files=[('etc', ['nemo.cfg'])],
scripts=['evolve.py', 'replay.py'],
install_requires=['numpy', 'pandas', 'matplotlib', 'deap'])