-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (42 loc) · 1.78 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
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = 'Scott Burns <scott.s.burns@vanderbilt.edu>'
import os
from recon_stats import __version__
from setuptools import setup, find_packages
if __name__ == '__main__':
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
long_desc = open('README.md').read()
setup(name='Recon-all Stats',
author='Scott Burns',
author_email='scott.s.burns@gmail.com',
description='recon-stats is a simple package to parse stats'
' files from Freesurfer\recon-all',
license='BSD (3-clause)',
url='http://github.com/sburns/recon-stats',
version=__version__,
download_url='http://github.com/sburns/recon-stats',
long_description=long_desc,
packages=find_packages(),
platforms='any',
classifiers=(
#'Development Status :: 1 - Planning',
'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',)
)