-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 954 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 954 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
27
28
29
30
from setuptools import setup
import versioneer
requirements = ["pandas"]
dev_requires = ["black"]
test_requires = ["pytest", "pytest-cov"]
extras = {
"dev": test_requires + dev_requires,
}
setup(
name="rc-building-model",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="A Resistance Capacitance (RC) Model for the Simulation of Building Stock Energy Usage",
license="MIT",
author="Rowan Molony",
author_email="rowan.molony@codema.ie",
url="https://github.com/rdmolony/rc-building-model",
packages=["rc_building_model"],
entry_points={"console_scripts": ["rc_building_model=rc_building_model.cli:cli"]},
install_requires=requirements,
extras_require=extras,
keywords="rc-building-model",
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)