Skip to content

Commit ce807ae

Browse files
committed
Update
1 parent 8d84290 commit ce807ae

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

setup.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
with open("README.md", "r") as fh:
3+
with open("README.md") as fh:
44
long_description = fh.read()
55

66
setuptools.setup(
@@ -21,15 +21,16 @@
2121
"anndata",
2222
"numba>=0.51.2",
2323
"scipy>=1.5",
24-
"pyranges"
25-
],
24+
"pyranges",
25+
],
26+
extras_require={"dev": ["ruff", "pre-commit"]},
2627
classifiers=[
2728
"Programming Language :: Python :: 3",
2829
"License :: OSI Approved :: MIT License",
2930
"Operating System :: OS Independent",
3031
],
31-
python_requires='>=3.8.0',
32+
python_requires=">=3.8.0",
3233
include_package_data=True,
33-
package_data={'': ['SEACells/Rscripts/*', '*.r', '*.R']},
34-
zip_safe=False
34+
package_data={"": ["SEACells/Rscripts/*", "*.r", "*.R"]},
35+
zip_safe=False,
3536
)

0 commit comments

Comments
 (0)