forked from qiajigou/Drop2PI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (36 loc) · 1.06 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
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
install_description = """
d2pi
=====
Python library for Dropbox to Raspberry PI.
Installation
------------
You can get the code from `https://github.com/GuoJing/Drop2PI`
"""
setup(
name='d2pi',
version='0.0.9.2',
license='GPLv3',
description='Python library for Dropbox to Raspberry PI',
long_description=install_description,
author='GuoJing',
author_email='soundbbg@gmail.com',
url='http://github.com/GuoJing/Drop2PI',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'watchdog',
'dropbox',
'PyYAML',
],
)