-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.16 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.16 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
from pathlib import Path
NAME = "learnpdes"
EXCLUDE_DIRS = ["tests"]
VERSION = "1.0"
AUTHOR = "Leon Deligny"
URL = "https://github.com/cfsengineering/CEASIOMpy"
REQUIRES_PYTHON = ">=3.12.0"
README = "README.md"
PACKAGE_DIR = "."
# Load description from README.md
with open(Path(Path(__file__).parent, README), "r") as fp:
long_description = fp.read()
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
long_description=long_description,
url=URL,
include_package_data=True,
package_dir={"": PACKAGE_DIR},
packages=setuptools.find_packages(exclude=EXCLUDE_DIRS),
python_requires=REQUIRES_PYTHON,
install_requires=[],
# See: https://pypi.org/classifiers/
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
)