forked from expfactory/expfactory-analysis
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
40 lines (32 loc) · 1 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
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
setup(
# Application name:
name="expanalysis",
# Version number (initial):
version="0.0.0",
# Application author details:
author=["Vanessa Sochat","Ian Eisenberg"],
author_email=["[email protected]","[email protected] "],
# Packages
packages=find_packages(),
# Data files
include_package_data=True,
zip_safe=False,
# Details
url="http://www.github.com/expfactory",
license="LICENSE",
description="Python module for experiment factory experiment analysis.",
keywords='analysis behavior neuroscience experiment factory',
install_requires = [
'kabuki',
'hddm',
'numpy==1.11.1',
'numexpr',
'pymc',
'scipy',
'seaborn',
'statsmodels']
)