-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (53 loc) · 1.76 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
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as version_file:
version = version_file.read().strip()
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setuptools.setup(
name='uvvispy',
version=version,
description='Package for handling optical absorption data.',
long_description=readme,
long_description_content_type='text/x-rst',
author='Till Biskup',
author_email='till@till-biskup.de',
url='https://www.uvvispy.de/',
project_urls={
'Documentation': 'https://docs.uvvispy.de/',
'Source': 'https://github.com/tillbiskup/uvvispy',
},
packages=setuptools.find_packages(exclude=('tests', 'docs')),
keywords=[
"spectroscopy",
"optical spectroscopy",
"UV-visible spectroscopy",
"uvvis",
"data processing and analysis",
"reproducible science",
"reproducible research",
"good scientific practice",
"recipe-driven data analysis",
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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 :: 4 - Beta",
"Topic :: Scientific/Engineering",
],
install_requires=[
'aspecd>=0.2.2',
],
extras_require={
'dev': ['prospector'],
'docs': ['sphinx', 'sphinx-rtd-theme'],
},
python_requires='>=3.5',
)