forked from vindolin/flashair_sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 646 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='flashair_sync',
version='0.1.0',
author='Thomas Schüßler',
author_email='vindolin@gmail.com',
packages=['_flashair_sync'],
scripts=['bin/flashair_sync'],
url='https://github.com/vindolin/flashair_sync',
license='MIT',
description='Simple directory syncer for Toshiba Flashair SD cards (used in 3D printers).',
long_description=open('README.rst').read(),
install_requires=['requests', 'requests_toolbelt', 'tqdm'],
keywords=['3d printing', 'flashair', 'sync'],
classifiers=[
'Development Status :: 4 - Beta',
],
)