This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
34 lines (30 loc) · 1.4 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
from setuptools import setup, find_packages
__author__ = "CHEN Kian Wee"
__copyright__ = "Copyright 2016, Chen Kian Wee"
__credits__ = ["CHEN Kian Wee"]
__license__ = "GPL3"
__version__ = "0.32"
__maintainer__ = "Chen Kian Wee"
__email__ = "chenkianwee@gmail.com"
__status__ = "Development"
LONG_DESCRIPTION = "refer to https://github.com/chenkianwee/py4design for full installation instructions"
INSTALL_REQUIRES = ['lxml', 'pyshp', 'numpy', 'scipy', 'sympy', 'pycollada', 'networkx', 'scikit-learn', 'cvxopt', 'matplotlib']
setup(name='py4design',
packages = find_packages(),
package_data={
'py4design': ['databases/ettv/*.csv'],
'py4design': ['py2radiance/*.rad']
},
version=__version__,
description='Python Library for Rapid Development of Design Workflows',
long_description=LONG_DESCRIPTION,
author=__author__,
author_email=__email__,
url='https://github.com/chenkianwee/py4design',
download_url = 'https://github.com/chenkianwee/py4design/archive/0.2a1.tar.gz',
keywords = ["design workflow","urban design","architecture design","design optimisation","design simulation"],
install_requires=INSTALL_REQUIRES,
classifiers = ['Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',],
)