-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 1.04 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
"""
The setup file. To install as a developer (only do this in a venv):
python setup.py develop
Otherwise, just:
python setup.py install
"""
from setuptools import setup, find_packages
setup(
name='fast_rsm',
version='0.0.1',
license='MIT License',
packages=find_packages('src'),
description=(
"A python package for using local statistics to cluster " +
"significant signal in scientific images."),
author='Richard Brearton',
author_email='[email protected]',
package_dir={'': 'src'},
include_package_data=True,
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
],
# The bare minimum for installation.
install_requires=["scipy >= 1.8.0"]
)