forked from citylearn-project/CityLearn
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 658 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
VERSION = '0.1.0'
DESCRIPTION = 'A grid integrated version of the CityLearn project'
LONG_DESCRIPTION = 'A grid integrated version of the CityLearn project'
# Setting up
setup(
name="gridlearn",
version=VERSION,
author="Jose Vazquez Canteli edited by Aisling Pigott",
author_email="aisling.pigott@colorado.edu",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
classifiers= []
)