forked from xbrainmap/xbrainmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.05 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='xbrainmap',
packages=find_packages(exclude=['test*']),
version=open('VERSION').read().strip(),
include_package_data=True,
zip_safe=False,
author='Doga Gursoy',
author_email='[email protected]',
description='xbrainmap',
keywords=['x-ray',
'brain',
'tomography',
'imaging'],
url='http://xbrainmap.readthedocs.org',
download_url='http://github.com/xbrainmap/xbrainmap.git',
license='BSD-3',
platforms='Any',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5']
)