forked from gentnerlab/pyoperant
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.32 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
from distutils.core import setup, Extension
import os
# def read(fname):
# return open(os.path.join(os.path.dirname(__file__), fname)).read()
comedi_poll = Extension('comedi_poll',
# include_dirs = ['/usr/local/include'],
libraries = ['comedi'],
# library_dirs = ['/usr/local/lib'],
sources = ['src/comedi_poll.c'])
setup(
name = 'pyoperant',
version = '0.1.2',
author = 'Justin Kiggins',
author_email = '[email protected]',
description = 'hardware interface and controls for operant conditioning',
long_description = open('docs/README.rst', 'rt').read(),
packages = ['pyoperant'],
requires = ['pyephem','numpy'],
scripts = [
'scripts/behave',
'scripts/pyoperantctl',
'scripts/allsummary.py',
],
license = "GNU Affero General Public License v3",
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering",
],
# ext_modules = [comedi_poll]
)