-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (36 loc) · 1.45 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
38
39
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = [
'joblib==1.2.*',
'numpy==1.23.*',
'numba==0.56.*',
'pandas==1.5.*',
'psutil==5.9.*',
'scikit-learn==1.1.*',
'scipy==1.9.*'
]
setuptools.setup(
name="frrsa",
version="0.0.1",
author="Philipp Kaniuth",
author_email="[email protected]",
description="Python package to conduct feature-reweighted representational similarity analysis.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ViCCo-Group/frrsa",
packages=setuptools.find_packages(),
license="GNU AFFERO GENERAL PUBLIC LICENSE Version 3",
install_requires=requirements,
keywords="feature extraction",
classifiers=[
"Programming Language :: Python :: 3.8",
"Natural Language :: English",
"License :: OSI Approved :: AGPL-3.0",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)