-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
47 lines (41 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
from setuptools import setup
THIS_DIR = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(THIS_DIR, "requirements.in")) as f:
install_requires = [line for line in f if line and line[0] not in "#-"]
with open(os.path.join(THIS_DIR, "test-requirements.in")) as f:
test_requires = [line for line in f if line and line[0] not in "#-"]
with open(os.path.join(THIS_DIR, "README.md")) as f:
long_description = f.read()
setup(
name="geomeppy",
packages=["geomeppy", "geomeppy.geom", "geomeppy.io", "tests"],
version="0.11.8",
description="Geometry editing for E+ idf files",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jamie Bull",
author_email="[email protected]",
url="https://github.com/jamiebull1/geomeppy",
download_url="https://github.com/jamiebull1/geomeppy/tarball/v0.11.8",
license="MIT License",
keywords=["EnergyPlus", "geometry", "building performance simulation"],
platforms="any",
install_requires=install_requires,
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
extras_require={
':python_version>="3.7"': ["mypy", "black"],
"testing": test_requires,
}, # static type checking
include_package_data=True,
)