Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
- Support for python 3.11
- Quadprog only a dependency before 3.11
- Updated Development status
  • Loading branch information
HKaras committed Jul 27, 2023
1 parent 00de930 commit d64286d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'Documentation': 'https://jeschkelab.github.io/DeerLab/',
'Source': 'https://github.com/JeschkeLab/DeerLab',
},
python_requires='>=3.8,<3.11',
python_requires='>=3.8',
license='LICENSE.txt',
include_package_data = True,
keywords='data analysis modeling least-squares EPR spectroscopy DEER PELDOR'.split(),
Expand All @@ -30,10 +30,10 @@
'pytest>=6.2.2',
'setuptools>=53.0.0',
'numexpr>=2.7.3',
'quadprog>=0.1.11',
'quadprog>=0.1.11; python_version <= "3.10"',
],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
Expand All @@ -42,6 +42,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering::Chemistry',
]
)

0 comments on commit d64286d

Please sign in to comment.