-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 875 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 875 Bytes
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
from setuptools import setup
import versioneer
commands = versioneer.get_cmdclass().copy()
setup(
name='lms2',
version=versioneer.get_version(),
description='Library for Linear Modelling of Energetic Systems',
author='Vincent Reinbold, Celia Masternak',
author_email='vincent.reinbold@gees.centralesupelec.fr',
license='BSD',
packages=['lms2',
'lms2.core',
'lms2.base',
'lms2.environment',
'lms2.economic',
'lms2.fluids',
'lms2.logical',
'lms2.mechanic',
'lms2.social',
'lms2.thermal',
'lms2.electric'],
classifiers=["Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9"],
)