forked from rsagroup/rsatoolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.29 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
40
41
42
from setuptools import setup, find_packages
requires = []
with open('requirements.txt') as reqfile:
requires = reqfile.read().splitlines()
test_requires = []
with open('tests/requirements.txt') as reqfile:
test_requires = reqfile.read().splitlines()
with open('README.md', encoding='utf-8') as readmefile:
long_description = readmefile.read()
setup(
name='rsatoolbox',
version='0.0.3',
description='Representational Similarity Analysis (RSA) in Python',
url='https://github.com/rsagroup/rsatoolbox',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
author='rsatoolbox authors',
author_email='',
keywords='neuroscience ',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=test_requires,
test_suite='tests',
)