-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (38 loc) · 1.32 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
LICENSE = open(os.path.join(here, 'LICENSE.txt')).read()
requires = [
'python-oauth2',
'httplib2',
'watchdog',
]
setup(name='ubuntuone',
version='1.0',
description='A python library/tool to download files from ubuntu',
long_description=README + '\n\n' + CHANGES,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: ubuntu one',
],
author='Damian Dimmich, Tauri-Tec Ltd',
author_email='[email protected]',
url='http://www.tauri-tec.com/',
license='BSD',
keywords='web ubuntu one ubuntoone',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite='ubuntuone',
install_requires=requires,
entry_points="""\
""",
)