-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (39 loc) · 1.22 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
#!/usr/bin/env python
# read online that setuptools is preferred to distutils
from setuptools import setup, find_packages
import clarityviz
VERSION = clarityviz.version
setup(
name='clarityviz',
packages=find_packages(exclude=['docs', 'tests*']),
#scripts = [],
entry_points = {
# 'console_scripts': [
# 'clarityviz=clarityviz:main',
# ],
},
version=VERSION,
description='A pipeline used to vizualize and analyze clarity treated brain images.',
author='Albert Lee, Jonathan Liu, Tony Sun, Luke Zhu',
url='https://github.com/NeuroDataDesign/seelviz',
download_url='https://github.com/alee156/clviz/tarball/0.1.7',
keywords=[
'clarity',
'brain',
'histogram equalization',
'connectivity',
'plotly'
],
license='',
data_files=None,
classifiers=[
'Development Status :: 3 - Alpha',
#'Intended Audience :: Researchers',
#'License :: ::',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4'
],
install_requires=[]
)