-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
executable file
·29 lines (25 loc) · 922 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
long_description = "Behavioral conditioning with mice"
setup(
name='pymouse',
version='0.1.dev1',
description="State system for mouse behavior",
long_description=long_description,
author='Emmanouil Froudarakis',
author_email='[email protected]',
license="GNU LGPL",
url='https://github.com/olakiril/PyMouse',
keywords='mouse behavior control',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['numpy', 'concurrent', 'pygame', 'imageio', 'datajoint'],
classifiers=[
'Development Status :: 1 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU LGPL',
'Topic :: Database :: Front-Ends',
]
)