-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.04 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
"""
NaMIx setup script.
See license in LICENSE
"""
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
setup(
name="namix",
version="0.2.0",
author="Serra Yosmaoglu",
author_email="[email protected]",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/DLR-VF/NaMIx",
packages=["namix"],
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
],
)