-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (41 loc) · 1.28 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
39
40
41
42
43
44
45
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from src.cpacspy.__version__ import __version__
NAME = "cpacspy"
VERSION = __version__
AUTHOR = "Giacomo Benedetti"
EMAIL = "giacomo.benedetti@cfse.ch"
DESCRIPTION = "PyPI package to work with CPACS file and AeroMaps"
LONG_DESCRIPTION = open("README.md").read()
URL = "https://github.com/cfsengineering/cpacspy"
REQUIRES_PYTHON = ">=3.11"
REQUIRED = []
README = "README.md"
PACKAGE_DIR = "src"
LICENSE = "Apache License 2.0"
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=URL,
include_package_data=True,
package_dir={"": PACKAGE_DIR},
license=LICENSE,
packages=[NAME],
python_requires=REQUIRES_PYTHON,
keywords=["CPACS", "aircraft", "design", "xml", "aerodynamics", "coefficients", "databases"],
install_requires=REQUIRED,
# See: https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
)