forked from RoboLearnr/python-robolearnr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 638 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='robolearnr-python',
description='SDK for Robolearn',
license='MIT',
url='https://github.com/NoUseFreak/robolearnr-python',
version='0.1.4',
author='Dries De Peuter',
author_email='dries@nousefreak.be',
maintainer='Dries De Peuter',
maintainer_email='dries@nousefreak.be',
long_description='',
packages=["robolearnr"],
zip_safe=False,
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7"
],
)