forked from RWTH-EBC/FiLiP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (59 loc) · 2.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""Setup.py script for the FiLiP-Library"""
import setuptools
# read the contents of your README file
from pathlib import Path
readme_path = Path(__file__).parent.joinpath("README.md")
LONG_DESCRIPTION = readme_path.read_text()
INSTALL_REQUIRES = ['aenum',
'datamodel_code_generator[http]>=0.11.16',
'paho-mqtt>=1.6.1',
'pandas>=1.2',
'pandas-datapackage-reader>=0.18.0',
'pydantic[dotenv]>=1.7.2',
'PyYAML',
'stringcase>=1.2.0',
'igraph==0.9.8',
'rdflib~=6.0.0',
'regex',
'requests',
'rapidfuzz',
'wget']
SETUP_REQUIRES = INSTALL_REQUIRES.copy()
setuptools.setup(
name='filip',
version='0.2.2',
author='RWTH Aachen University, E.ON Energy Research Center, Institute\
of Energy Efficient Buildings and Indoor Climate',
author_email='[email protected]',
description='[FI]WARE [Li]brary for [P]ython',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/RWTH-EBC/filip",
download_url="https://github.com/RWTH-EBC/FiLiP/archive/refs/tags/v0.2.1.tar.gz",
project_urls={
"Documentation":
"https://ebc.pages.rwth-aachen.de/EBC_all/github_ci/FiLiP/master/docs/index.html",
"Source":
"https://github.com/RWTH-EBC/filip",
"Download":
"https://github.com/RWTH-EBC/FiLiP/archive/refs/tags/v0.2.1.tar.gz"},
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
classifiers=['Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"License :: OSI Approved :: BSD License"],
keywords=['iot', 'fiware', 'semantic'],
packages=setuptools.find_packages(exclude=['tests',
'tests.*',
'img',
'tutorials.*',
'tutorials']),
package_data={'filip': ['data/unece-units/*.csv']},
setup_requires=SETUP_REQUIRES,
install_requires=INSTALL_REQUIRES,
python_requires=">=3.7",
)