-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·65 lines (52 loc) · 1.95 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
#! /usr/bin/env python3
# --- import -------------------------------------------------------------------------------------
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(here, fname)).read()
here = os.path.abspath(os.path.dirname(__file__))
extra_files = {"attune": ["VERSION"]}
with open(os.path.join(here, "attune", "VERSION")) as version_file:
version = version_file.read().strip()
# --- setup function -----------------------------------------------------------------------------
setup(
name="attune",
packages=find_packages(exclude=("tests", "tests.*")),
package_data=extra_files,
python_requires=">=3.7",
install_requires=[
"WrightTools>=3.2.5",
"numpy",
"scipy",
"matplotlib",
"appdirs",
"dateparser",
"python-dateutil",
"click",
],
extras_require={
"dev": ["black", "pre-commit", "pytest", "pytest-cov"],
"docs": ["sphinx-gallery>0.3.0", "sphinx", "sphinx-rtd-theme"],
},
version=version,
description="Tools for tuning optical parametric amplifiers and multidimensional spectrometers.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Blaise Thompson",
author_email="[email protected]",
license="MIT",
url="https://github.com/wright-group/attune",
keywords="spectroscopy science multidimensional visualization",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
],
entry_points={"console_scripts": ["attune = attune._cli:main"]},
)