forked from Charestlab/pyGLMdenoise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.13 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
from setuptools import setup, find_packages
requires = []
with open('requirements.txt') as reqfile:
requires = reqfile.read().splitlines()
with open('README.md', encoding='utf-8') as readmefile:
long_description = readmefile.read()
setup(
name='glmdenoise',
version='0.0.5',
description='Python GLMdenoise',
url='https://github.com/Charestlab/pyGLMdenoise',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
],
maintainer='Jasper van den Bosch',
maintainer_email='[email protected]',
keywords='neuroscience ',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite='tests',
entry_points={
'console_scripts': [
'glmdenoise = glmdenoise.console:main',
],
},
)