forked from open-atmos/PySDM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.67 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
41
from setuptools import setup, find_packages
def get_long_description():
with open("README.md", "r", encoding="utf8") as file:
long_description = file.read()
return long_description
setup(
name='PySDM',
description='Pythonic particle-based (super-droplet) cloud microphysics modelling with Jupyter examples',
use_scm_version=True,
setup_requires=['setuptools_scm'],
install_requires=['ThrustRTC==0.3.10',
'CURandRTC==0.1.6',
'numba==0.53.1',
'numpy>=1.20.2',
'Pint>=0.17',
'chempy>=0.8.0',
'scipy>=1.6.3'],
author='https://github.com/atmos-cloud-sim-uj/PySDM/graphs/contributors',
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/atmos-cloud-sim-uj/PySDM",
license="GPL-3.0",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries'
],
keywords='physics-simulation, monte-carlo-simulation, gpu-computing, atmospheric-modelling, particle-system, numba, thrust, nvrtc, pint, atmospheric-physics',
packages=find_packages(include=['PySDM', 'PySDM.*'])
)