forked from jtoy/sensenet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 805 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
from setuptools import setup, find_packages
import sys, os.path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'sensenet'))
from version import VERSION
setup(name='sensenet',
version=VERSION,
include_package_data=True,
description='SenseNet',
url='https://github.com/jtoy/sensenet',
author='Jason Toy',
author_email='[email protected]',
license='',
packages=[package for package in find_packages()
if package.startswith('sensenet')],
zip_safe=False,
install_requires=[
'numpy>=1.10.4', 'requests>=2.0', 'six', 'pybullet'
],
keywords = ['deep learning', 'reinforcement learning', 'machine learning','robotics'],
#package_data={'sensenet': ['data/*']},
tests_require=['pytest'],
)