-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (45 loc) · 1.57 KB
/
setup.py
File metadata and controls
46 lines (45 loc) · 1.57 KB
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
from setuptools import setup, find_packages # type: ignore
setup(
name='eprpy',
version='0.9.0b2',
description="A Python library for working with EPR spectroscopic data.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.9, <=3.13",
author="Davis Thomas Daniel",
author_email="davisthomasdaniel@gmail.com",
url="https://github.com/davistdaniel/EPRpy",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'numpy',
'scipy',
'matplotlib',
],
packages=find_packages(),
project_urls={
"Bug Tracker": "https://github.com/davistdaniel/EPRpy/issues",
"Documentation": "https://davistdaniel.github.io/EPRpy/",
"Source Code": "https://github.com/davistdaniel/EPRpy",
},
extras_require={
"develop": [
'pytest',
'pytest-cov',
'sphinx',
'nbsphinx==0.9.7',
'furo==2025.7.19',
'sphinx-copybutton==0.5.2'
]}
)