|
@@ -0,0 +1,31 @@
|
|
1
|
+#!/usr/bin/env python
|
|
2
|
+# -*- coding: utf-8 -*-
|
|
3
|
+
|
|
4
|
+from setuptools import setup
|
|
5
|
+
|
|
6
|
+setup(
|
|
7
|
+ name='FileDropper',
|
|
8
|
+ version='0.1',
|
|
9
|
+
|
|
10
|
+ description='Easy access to FileDropper.com',
|
|
11
|
+ long_description="""
|
|
12
|
+ Full access to FileDropper.com. With this module you can upload files, log
|
|
13
|
+ into a premium account, list the files for this account, delete them or
|
|
14
|
+ change their permissions.
|
|
15
|
+ """,
|
|
16
|
+ license='ISC',
|
|
17
|
+
|
|
18
|
+ author='Thomas Jost',
|
|
19
|
+ author_email='thomas.jost@gmail.com',
|
|
20
|
+ url='https://wiki.schnouki.net/dev:filedropper',
|
|
21
|
+ download_url='http://dev.schnouki.net/filedropper/',
|
|
22
|
+
|
|
23
|
+ platforms='Python 2.6',
|
|
24
|
+ install_requires=['BeautifulSoup', 'urlgrabber', 'poster'],
|
|
25
|
+ extra_requires = {
|
|
26
|
+ 'GnuPG': ['GnuPGInterface'],
|
|
27
|
+ },
|
|
28
|
+
|
|
29
|
+ py_modules=['FileDropper'],
|
|
30
|
+ scripts=['ffx-backup.py', 'cron-ffx-backup.sh'],
|
|
31
|
+)
|