We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d84290 commit ce807aeCopy full SHA for ce807ae
setup.py
@@ -1,6 +1,6 @@
1
import setuptools
2
3
-with open("README.md", "r") as fh:
+with open("README.md") as fh:
4
long_description = fh.read()
5
6
setuptools.setup(
@@ -21,15 +21,16 @@
21
"anndata",
22
"numba>=0.51.2",
23
"scipy>=1.5",
24
- "pyranges"
25
- ],
+ "pyranges",
+ ],
26
+ extras_require={"dev": ["ruff", "pre-commit"]},
27
classifiers=[
28
"Programming Language :: Python :: 3",
29
"License :: OSI Approved :: MIT License",
30
"Operating System :: OS Independent",
31
],
- python_requires='>=3.8.0',
32
+ python_requires=">=3.8.0",
33
include_package_data=True,
- package_data={'': ['SEACells/Rscripts/*', '*.r', '*.R']},
34
- zip_safe=False
+ package_data={"": ["SEACells/Rscripts/*", "*.r", "*.R"]},
35
+ zip_safe=False,
36
)
0 commit comments