-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
executable file
·38 lines (37 loc) · 1.55 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='octoclient',
version='0.2.dev1',
description='Client library for OctoPrint REST API',
long_description=''.join(open('README.rst').readlines()),
keywords='octoprint, 3d printing',
author='Miro Hrončok, Jiří Makarius',
author_email='miro@hroncok.cz, meadowfrey@gmail.com',
license='MIT',
url='https://github.com/hroncok/octoclient',
packages=[p for p in find_packages() if p != 'tests'],
install_requires=['requests', 'websocket-client'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'betamax-serializers', 'betamax'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Printing',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Networking :: Monitoring',
]
)