-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 751 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 751 Bytes
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
from setuptools import setup, find_packages
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
VERSION = '0.2'
REQUIRES = [
'requests',
'pillow'
]
setup(
name='machinebox-python-sdk',
version=VERSION,
url='https://github.com/machinebox/machinebox-python-sdk',
keywords='machinebox',
author='Robin Cole',
author_email='robmarkcole@gmail.com',
description='Tools for working with Machinebox',
install_requires=REQUIRES,
packages=PACKAGES,
license='Apache License, Version 2.0',
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3"]
)