-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 1.35 KB
/
setup.py
File metadata and controls
38 lines (33 loc) · 1.35 KB
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
from setuptools import setup, find_packages
from pkg_resources import parse_requirements
import os
with open(os.path.join("opyplus", "version.py")) as f:
version = f.read().split("=")[1].strip().strip("'").strip('"')
with open("requirements.txt", "r") as f:
requirements = [str(r) for r in parse_requirements(f.read())]
setup(
name="opyplus",
version=version,
packages=find_packages(where=".", include=["opyplus", "opyplus.*"]),
description="Python package to work with Energyplus input and output",
author="Openergy development team",
author_email="contact@openergy.fr",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=requirements,
url="https://github.com/openergy/opyplus",
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Physics",
],
include_package_data=True
)