-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·35 lines (31 loc) · 1.02 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
#!/usr/bin/env python
import os
from setuptools import setup
def get_readme():
md_path = os.path.join(os.path.dirname(__file__), "README.md")
txt_path = os.path.join(os.path.dirname(__file__), "README.txt")
if os.path.exists(txt_path):
d = open(txt_path).read()
elif os.path.exists(md_path):
d = open(md_path).read()
else:
d = ""
return d
setup(name='cili',
version='0.5.3',
author='Ben Acland',
author_email='[email protected]',
description='Eyetracking data tools based on pandas',
license='BSD',
keywords='eyetracking pupillometry eyelink',
url='https://github.com/beOn/cili',
install_requires=['scipy','numexpr','tables','pandas'],
packages=['cili'],
long_description=get_readme(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Science/Research',
],
)