forked from janfreyberg/superintendent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 911 Bytes
/
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
"""Installer."""
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
blurb = ''
if path.isfile('README.md'):
readme = open('README.md', 'r').read()
else:
readme = blurb
version = '0.0.1'
setup(
name='superintendent',
version=version,
description=blurb,
long_description=readme,
url='https://github.com/janfreyberg/sueprintendent',
download_url='https://github.com/janfreyberg/sueprintendent/' +
version + '.tar.gz',
# Author details
author='Jan Freyberg',
author_email='jan.freyberg@gmail.com',
packages=['superintendent'],
keywords=['widgets', 'labelling', 'annotation'],
install_requires=['ipywidgets']
# Include the template file
# package_data={
# '': ['data/*nii*',
# 'data/examples_surfaces/lh.*',
# 'data/examples_surfaces/*.ctab']
# },
)