-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.67 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (41 loc) · 1.67 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
46
47
from pathlib import Path
from setuptools import setup, find_packages
from pySpectralPDE import version
__version__ = version.__version__
BASE_PATH = Path(__file__).resolve().parent
# read the version from the particular file
with open(BASE_PATH / "pySpectralPDE" / "version.py", "r") as f:
exec(f.read())
DOWNLOAD_URL = f"https://github.com/alanmatzumiya/pySpectralPDE/archive/v{__version__}.tar.gz"
# read the version from the particular file
with open(BASE_PATH / "README.md", "r") as fh:
long_description = fh.read()
setup(
name="pySpectralPDE",
package_data={"pySpectralPDE": ["py.typed"]},
packages=find_packages(),
zip_safe=False, # this is required for mypy to find the py.typed file
version=__version__,
license="MIT",
description="Python package for solving PDEs' using spectral methods",
long_description=long_description,
long_description_content_type="text/markdown",
author="Alan Matzumiya",
author_email="alan.matzumiya@gmail.com",
url="https://github.com/alanmatzumiya/pySpectralPDE",
download_url=DOWNLOAD_URL,
keywords=["burgers", "partial-differential-equations", "spectral-methods"],
python_requires=">=3.7",
install_requires=["matplotlib", "numpy", "numba", "scipy"],
classifiers=[
"Development Status :: null",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)