-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
44 lines (32 loc) · 1.15 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
41
42
43
44
#!/usr/bin/env python
import re
import sys
from setuptools import setup, find_packages
def version():
with open('explauto/_version.py') as f:
return re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", f.read()).group(1)
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='explauto',
version=version(),
packages=find_packages(),
install_requires=['numpy', 'scipy', 'scikit-learn'],
extra_require={
'diva': ['pymatlab'],
'pypot': ['pypot'],
'non_parametric': [], # See https://github.com/humm/models
'imle': [],
'doc': ['sphinx', 'sphinx-bootstrap-theme'],
},
setup_requires=['setuptools_git >= 0.3', ],
# include_package_data=True,
# exclude_package_data={'': ['README', '.gitignore']},
zip_safe=True,
author='Clement Moulin-Frier, Pierre Rouanet, Sebastien Forestier',
author_email='[email protected]',
description='Python Library for Autonomous Exploration',
url='https://github.com/flowersteam/explauto',
license='GNU GENERAL PUBLIC LICENSE Version 3',
**extra
)