-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
82 lines (78 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
import os
import setuptools
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
content = f.read()
return content
setuptools.setup(
name="aspecd",
version=read("VERSION").strip(),
description="Framework for handling spectroscopic data.",
long_description=read("README.rst"),
long_description_content_type="text/x-rst",
author="Till Biskup",
author_email="[email protected]",
url="https://www.aspecd.de/",
project_urls={
"Documentation": "https://docs.aspecd.de/",
"Source": "https://github.com/tillbiskup/aspecd",
},
packages=setuptools.find_packages(exclude=("tests", "docs")),
license="BSD",
keywords=[
"spectroscopy",
"data processing and analysis",
"reproducible science",
"reproducible research",
"good scientific practice",
"recipe-driven data analysis",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
install_requires=[
"jinja2>=3.0",
"matplotlib",
"numpy",
"scipy>=0.14",
"oyaml",
"asdf",
"bibrecord>=0.2",
"setuptools",
],
extras_require={
"dev": [
"prospector",
"pyroma",
"bandit",
"black",
],
"docs": [
"sphinx",
"sphinx-rtd-theme",
"sphinx-multiversion",
],
"deployment": [
"build",
"twine",
],
},
python_requires=">=3.7",
entry_points={
"console_scripts": [
"serve = aspecd.tasks:serve",
],
},
include_package_data=True,
)