forked from claresinger/PySDM-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.05 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
from setuptools import find_packages, setup
def get_long_description():
with open("README.md", "r", encoding="utf8") as file:
long_description = file.read()
return long_description
setup(
name="PySDM-examples",
description="PySDM usage examples reproducing results from literature "
"and depicting how to use PySDM from Python Jupyter notebooks",
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=[
"PySDM",
"PyMPDATA",
"atmos-cloud-sim-uj-utils",
"pystrict",
"matplotlib",
"ipywidgets",
"pyvinecopulib",
"seaborn",
"ghapi",
], # note: test-time-requirement?
author="https://github.com/orgs/atmos-cloud-sim-uj/people",
author_email="sylwester.arabas@uj.edu.pl",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/atmos-cloud-sim-uj/PySDM-examples",
license="GPL-3.0",
packages=find_packages(include=["PySDM_examples", "PySDM_examples.*"]),
)