-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (45 loc) · 1.36 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
#! /usr/bin/env python
import pathlib
from setuptools import setup, find_packages
__here__ = pathlib.Path(__file__).parent
extra_files = {"WrightSim": ["VERSION"]}
with __here__ / "WrightSim" / "VERSION" as version_file:
version = version_file.read_text().strip()
setup(
name="WrightSim",
packages=find_packages(),
package_data=extra_files,
python_requires=">=3.7",
install_requires=[
"h5py>=2.7.0",
"numpy",
"scipy",
"WrightTools"
],
extras_require={
"docs": ["sphinx-gallery>=0.1.9"],
"cuda": ["pycuda"],
"dev": [
"black",
"pre-commit",
"pytest",
"pytest-cov",
]
},
version=version,
description="A simulation package for multidimensional spectroscopy.",
author="WrightSim Developers",
license="MIT",
url="https://github.com/wright-group/WrightSim",
keywords="spectroscopy science multidimensional simulation",
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
],
)