forked from mtress/mtress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.16 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
import os
from setuptools import find_packages, setup
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name="mtress",
version="3.0.0a2",
url="https://github.com/mtress/mtress",
author="Deutsches Zentrum für Luft- und Raumfahrt e.V. (DLR)",
author_email="[email protected]",
packages=find_packages(),
classifiers=[
# complete classifier list:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
python_requires=">=3.10",
long_description=read("README.md"),
long_description_content_type="text/markdown",
zip_safe=False,
install_requires=read("requirements.txt"),
)