-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (31 loc) · 1.09 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
import io
import os
from setuptools import setup, find_packages
def readme():
readme_path = os.path.join(os.path.dirname(__file__), 'README.rst')
with io.open(readme_path) as f:
return f.read()
setup(
name='task_models',
version='0.0.1',
description='Task models for human robot collabortation',
long_description=readme(),
url='https://github.com/ScazLab/task-models',
author='Olivier Mangin',
author_email='[email protected]',
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Researchers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(exclude=['tests', 'task_models/utils/tests']),
test_suite="tests.test_suite",
)