-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
69 lines (63 loc) · 2.15 KB
/
Copy pathsetup.py
File metadata and controls
69 lines (63 loc) · 2.15 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
import io
import os
import re
from setuptools import find_packages
from setuptools import setup
# version
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'brainpy_datasets', '__init__.py'), 'r') as f:
init_py = f.read()
version = re.search('__version__ = "(.*)"', init_py).groups()[0]
# obtain long description from README
with io.open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
README = f.read()
# installation packages
packages = find_packages()
if 'docs' in packages:
packages.remove('docs')
if 'tests' in packages:
packages.remove('tests')
# setup
setup(
name='brainpy_datasets',
version=version,
description='BrainPy Datasets',
long_description=README,
long_description_content_type="text/markdown",
author='BrainPy Team',
author_email='chao.brain@qq.com',
packages=packages,
python_requires='>=3.7',
install_requires=['brainpy>=2.2.0', 'requests'],
url='https://github.com/brainpy/brainpy-datasets',
project_urls={
"Bug Tracker": "https://github.com/brainpy/brainpy-datasets/issues",
# "Documentation": "https://brainpy.readthedocs.io/",
"Source Code": "https://github.com/brainpy/brainpy-datasets",
},
keywords=('computational neuroscience, '
'brain-inspired computation, '
'brainpy, '
'dataset, '
'brain modeling, '
'brain dynamics modeling, '
'brain dynamics programming'),
classifiers=[
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries',
],
license='GPL-3.0 license',
)