-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.05 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
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='pySearchlight',
version='0.0.1',
description='pySearchlight',
url='https://github.com/charestlab/pySearchlight',
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='Ian Charest, Daniel Lindh and Jasper van den Bosch',
maintainer_email='i.charest@bham.ac.uk',
keywords='neuroscience ',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite='tests'
)