-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (39 loc) · 1.21 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
#!/usr/bin/env python
import sys
import setuptools
if not sys.hexversion >= 0x02070000:
raise RuntimeError("Python 2.7 or newer is required")
from setuptools import setup, find_packages
setup(
name='multiworm',
version='0.1.1',
description='Python interface for Multi-Worm Tracker data',
packages=[p for p in find_packages() if p.startswith('multiworm')],
author='Nick Timkovich',
author_email='npt@u.northwestern.edu',
url='https://github.org/nicktimko/multiworm',
long_description=open('README.rst', 'r').read(),
keywords=[
'c. elegans', 'caenorhabditis elegans', 'caenorhabditis', 'elegans',
'worm', 'tracking', 'biology', 'amaral',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
install_requires=[
'networkx>=1.8.1',
'numpy>=1.8.1',
'pandas>=0.14.0',
'pathlib>=1.0.1',
# 'scipy>=0.11.0',
'six>=1.7.2',
],
test_requires=[
'nose>=1.3.0',
'coverage>=2.0.5',
# 'scipy>=0.11.0',
],
)