-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
71 lines (65 loc) · 2.33 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright (c) 2010-2024 The Regents of the University of Michigan
# This file is from the freud project, released under the BSD 3-Clause License.
import os
from skbuild import setup
version = "3.1.0"
# Read README for PyPI, fallback to short description if it fails.
description = "Powerful, efficient trajectory analysis in scientific Python."
try:
readme_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.rst")
with open(readme_file) as f:
readme = f.read()
except ImportError:
readme = description
setup(
name="freud-analysis",
version=version,
packages=["freud"],
description=description,
long_description=readme,
long_description_content_type="text/x-rst",
keywords=(
"simulation analysis molecular dynamics soft matter "
"particle system computational physics"
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
zip_safe=False,
maintainer="freud Developers",
maintainer_email="[email protected]",
# See documentation credits for current and former lead developers
author="Vyas Ramasubramani et al.",
author_email="[email protected]",
url="https://github.com/glotzerlab/freud",
download_url="https://pypi.org/project/freud-analysis/",
project_urls={
"Homepage": "https://github.com/glotzerlab/freud",
"Documentation": "https://freud.readthedocs.io/",
"Source Code": "https://github.com/glotzerlab/freud",
"Issue Tracker": "https://github.com/glotzerlab/freud/issues",
},
python_requires=">=3.9",
install_requires=[
"numpy>=1.19.0",
"rowan>=1.2.1",
"scipy>=1.7.3",
],
tests_require=[
"ase>=3.16",
"gsd>=2.5.0",
"matplotlib>=3.5.0",
"sympy>=1.10",
],
)