forked from MDAnalysis/distopia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (49 loc) · 1.75 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
from skbuild import setup
import versioneer
import os
description = "Fast distance calculations using explicitly vectorised SIMD"
try:
readme_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")
with open(readme_file) as f:
long_description = f.read()
except ImportError:
long_description = description
setup(
name="distopia",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description_content_type = "text/markdown",
description=description,
long_description=long_description,
author=['Hugo MacDermott-Opeskin', "Richard Gowers"],
license="MIT",
packages=['distopia'],
python_requires=">=3.9",
keywords=(
"molecular dynamics distances simulation SIMD"
),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
url="https://github.com/MDAnalysis/distopia",
download_url="https://pypi.org/project/distopia/",
project_urls={
"Homepage": "https://github.com/MDAnalysis/distopia",
"Documentation": "https://www.mdanalysis.org/distopia/",
"Source Code": "https://github.com/MDAnalysis/distopia",
"Issue Tracker": "https://github.com/MDAnalysis/distopia/issues",
},
install_requires=[
"numpy>=1.23"
],
)