-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
48 lines (47 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
from setuptools import setup
setup(
name='DeerLab',
version=open('VERSION').read().splitlines()[0].replace("v", ""),
author='Luis Fábregas Ibáñez , Stefan Stoll and other contributors',
package_dir={'deerlab': 'deerlab'},
packages=['deerlab','deerlab'],
url='https://github.com/JeschkeLab/DeerLab',
project_urls = {
'Documentation': 'https://jeschkelab.github.io/DeerLab/',
'Source': 'https://github.com/JeschkeLab/DeerLab',
},
python_requires='>=3.9',
license='LICENSE.txt',
include_package_data = True,
keywords='data analysis modeling least-squares EPR spectroscopy DEER PELDOR'.split(),
description='Comprehensive package for data analysis of dipolar EPR spectroscopy',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type="text/markdown",
install_requires = [
'numpy>=2.0',
'cvxopt>=1.0.0',
'scipy>=1.11',
'joblib>=1.0.0',
'dill>=0.3.0',
'tqdm>=4.51.0',
'matplotlib>=3.3.4',
'memoization>=0.3.1',
'pytest>=6.2.2',
'setuptools>=53.0.0',
'numexpr>=2.7.3',
'quadprog>=0.1.11; python_version <= "3.10"',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Chemistry',
]
)