-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
44 lines (40 loc) · 1.39 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
40
41
42
43
44
"""Setup script."""
import time
from pathlib import Path
from setuptools import setup
with Path('README.md').open(encoding='utf-8') as f:
long_description = f.read()
setup(name='nemopt',
# Use a datestamp as the version.
version=time.strftime('%Y%m%d'),
packages=['awklite', 'nemo'],
description='National Electricity Market Optimiser',
author='Ben Elliston',
author_email='[email protected]',
license='GPLv3',
url='https://nemo.ozlabs.org',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['electricity', 'model', 'scenarios'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: X11 Applications',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
],
data_files=[('etc', ['nemo.cfg'])],
scripts=['evolve', 'replay', 'summary'],
install_requires=[
'deap',
'colored<2',
'Gooey>=1.0.4',
'matplotlib',
'numpy',
'pandas',
'pint',
'requests'])