-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.56 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
43
44
45
# -*- encoding: utf-8 -*-
import setuptools
def read_file(file_name):
with open(file_name, encoding='utf-8') as fh:
text = fh.read()
return text
setuptools.setup(
name='brain_decode_project',
author_email='[email protected]',
description='',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
license='Apache-2.0',
url='',
project_urls={
},
version=read_file('brain_decode_project/__version__.py').split()[-1].strip('\''),
packages=setuptools.find_packages(exclude=['*.tests', '*.tests.*',
'tests.*', 'tests'],),
package_data={'brain_decode_project': ['runner/library/AgeBaseline.yaml']},
python_requires='>3.5, <=3.10',
install_requires=read_file('./requirements.txt').split('\n'),
test_suite='pytest',
platforms=['Linux'],
classifiers=[
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
]
)