generated from architecture-building-systems/cea-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 821 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
from setuptools import setup, find_packages
__author__ = "Daren Thomas"
__copyright__ = "Copyright 2020, Architecture and Building Systems - ETH Zurich"
__credits__ = ["Daren Thomas"]
__license__ = "MIT"
__version__ = "1.0.0"
__maintainer__ = "Daren Thomas"
__email__ = "[email protected]"
__status__ = "Production"
setup(name='cea-remap-ville-plugin',
version=__version__,
description="A CEA plugin for the ReMaP / VILLE project",
license='MIT',
author='Architecture and Building Systems',
author_email='[email protected]',
url='https://github.com/architecture-building-systems/cea-remap-ville-plugin',
long_description="A CEA plugin for the ReMaP / VILLE project.",
py_modules=[''],
packages=find_packages(),
package_data={},
include_package_data=True)