-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (60 loc) · 2.01 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
import setuptools
__version__ = "0.2.1"
with open("README.md", "r") as fh:
long_description = fh.read()
# Make sure find_packages exclude is correct
# data_files needed?
setuptools.setup(
name="pyeem",
version=__version__,
author="Drew Meyers",
author_email="[email protected]",
description="Python library for the preprocessing, correction, deconvolution and analysis of Excitation Emission Matrices (EEMs).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/drewmee/PyEEM",
license="MIT",
packages=setuptools.find_packages(exclude=["tests*", "paper", "docs"]),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
],
test_suite="tests",
install_requires=[
"numpy<1.19.0,>=1.18.5",
"pandas>=1.0.5",
"xlrd >= 1.0.0",
"h5py<2.11.0,>=2.10.0",
"tables>=3.6.1",
"matplotlib>=3.3.0",
"celluloid>=0.2.0",
"docutils<0.16,>=0.10",
"urllib3>=1.25.9",
"boto3>=1.14.33",
"tqdm>=4.48.0",
"scipy==1.4.1",
"tensorflow>=2.2.0",
],
extras_require={
"docs": [
"sphinx>=3.2.0",
"sphinx-automodapi>=0.12",
"sphinx-rtd-theme>=0.5.0",
"msmb_theme>=1.2.0",
"nbsphinx>=0.7.1",
"sphinx-copybutton>=0.3.0",
"black>=20.8b1",
"isort>=5.4.2",
"rstcheck>=3.3.1",
],
"tests": ["pytest>=6.0.1", "tox>=3.16.1"],
"develop": ["twine>=3.2.0", "pre-commit>=2.8.2"],
"jupyter": ["ipython>=7.16.1", "jupyter>=1.0.0", "jupyterlab>=2.2.2"],
},
package_data={"pyeem": ["plots/pyeem_base.mplstyle"]},
)