forked from boatd/python-boatd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 781 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='python-boatdclient',
version='0.7.0',
author='Louis Taylor',
author_email='[email protected]',
description=('Python wrapper for the boatd API, used to write behavior scripts.'),
long_description=open("README.rst").read(),
license='GPL',
keywords='boat sailing wrapper rest',
url='https://github.com/boatd/python-boatd',
packages=['boatdclient'],
scripts=['boatdctl'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)