forked from piotrbartman/PyMPDATA-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.53 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
39
40
""" the magick behind ``pip install ...`` """
from setuptools import setup, find_packages
def get_long_description():
""" returns contents of README.md file """
with open("README.md", "r", encoding="utf8") as file:
long_description = file.read()
return long_description
setup(
name='PyMPDATA-examples',
description='PyMPDATA usage examples reproducing results from literature'
' and depicting how to use PyMPDATA in Python from Jupyter notebooks',
use_scm_version={"local_scheme": lambda _: "", "version_scheme": "post-release"},
setup_requires=['setuptools_scm'],
install_requires=['PyMPDATA',
'atmos_cloud_sim_uj_utils',
'pystrict',
'matplotlib',
'ipywidgets',
'scipy',
'pint',
'joblib',
'sympy',
'ghapi'],
author='https://github.com/orgs/atmos-cloud-sim-uj/people',
license="GPL-3.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(include=['PyMPDATA_examples', 'PyMPDATA_examples.*']),
package_data={'': ['*/*/*.txt']},
include_package_data=True,
project_urls={
"Tracker": "https://github.com/atmos-cloud-sim-uj/PyMPDATA/issues",
"Documentation": "https://atmos-cloud-sim-uj.github.io/PyMPDATA-examples",
"Source": "https://github.com/atmos-cloud-sim-uj/PyMPDATA-examples"
}
)