forked from FireDynamics/fdsreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 998 Bytes
/
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
import os
import setuptools
base_dir = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(base_dir, "README.md"), 'r', encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="fdsreader",
use_incremental=True,
setup_requires=['incremental'],
author="FZJ IAS-7 (Jan Vogelsang, Prof. Dr. Lukas Arnold, Tristan Hehnen)",
author_email="[email protected]",
description="Python reader for data generated by FDS.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/FireDynamics/fdsreader",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'incremental',
'numpy',
'typing_extensions'
],
)