-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.54 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
#! /usr/bin/env python
import os
from setuptools import setup
version = '0.0.1'
setup(
name='bayesian-retinotopy',
version=version,
description='Analysis repository that is the companion of the paper Benson and Winawer (2017)',
keywords='neuroscience mesh cortex registration',
author='Noah C. Benson',
author_email='nben@nyu.edu',
maintainer_email='nben@nyu.edu',
long_description='''
See the README.md file at the github repository for this package:
https://github.com/winawerlab/bayesian-retinotopy
''',
url='https://github.com/winawerlab/bayesian-retinotopy',
download_url='https://github.com/winawerlab/bayesian-retinotopy',
license='GPLv3',
classifiers=['Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS'],
packages=['v123'],
include_package_data=True,
package_data={'': ['LICENSE.txt']},
install_requires=['neuropythy>=0.3',
'numpy>=1.2',
'scipy>=0.7'])