Skip to content

Commit 09ea756

Browse files
committed
Fix dependencies
1 parent 76c0f1f commit 09ea756

File tree

2 files changed

+4
-29
lines changed

2 files changed

+4
-29
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
]
1717

1818
dependencies = [
19-
"numpy"<2,
19+
"numpy<2",
2020
"scipy",
2121
"astropy",
2222
"pandas",

setup.py

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
11
# -*- coding: utf-8 -*-
2-
from setuptools import setup
3-
import os
42

5-
from setuptools import setup, find_packages
3+
import setuptools
64

7-
long_description = open("README.md").read()
8-
9-
install_requires = [
10-
'numpy>=1.9',
11-
'scipy',
12-
'astropy',
13-
'pandas>=0.14.1',
14-
'elephant',
15-
'matplotlib']
16-
extras_require = {
17-
'testing': ['pytest'],
18-
'docs': ['numpydoc>=0.5',
19-
'sphinx>=1.2.2',
20-
'sphinx_rtd_theme']
21-
}
22-
23-
setup(
24-
name="spatial_maps",
25-
install_requires=install_requires,
26-
tests_require=install_requires,
27-
extras_require=extras_require,
28-
packages=find_packages(),
29-
include_package_data=True,
30-
version='0.1',
31-
)
5+
if __name__ == "__main__":
6+
setuptools.setup()

0 commit comments

Comments
 (0)