-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 785 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 785 Bytes
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
from setuptools import setup, find_packages
requires = []
with open('requirements.txt') as reqfile:
requires = reqfile.read().splitlines()
setup(
name='pyslicetime',
version='0.2',
description='Python Slice Timing Correction',
url='https://github.com/Charestlab/pyslicetime',
long_description='',
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",
],
author='',
author_email='',
keywords='neuroscience ',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
)