-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·60 lines (55 loc) · 1.82 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from distutils.command.build import build
from libturpial import VERSION
LONG_DESCRIPTION = """
libturpial is a library that handles multiple microblogging protocols. It
implements a lot of features and aims to support all the features for each
protocol. This library is the backend used for Turpial.
"""
data_files=[
('./', ['ChangeLog', 'AUTHORS', 'COPYING']),
]
setup(name="libturpial",
version=VERSION,
description="Microblogging library",
long_description=LONG_DESCRIPTION,
author="Wil Alvarez",
author_email="[email protected]",
maintainer="Wil Alvarez",
maintainer_email="[email protected]",
url="http://github.com/Turpial/libturpial",
download_url="http://github.com/Turpial/libturpial",
license="GPLv3",
keywords='twitter identi.ca microblogging api libturpial',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
],
include_package_data=True,
packages=find_packages(exclude=['tests']),
package_data={
'libturpial': ['certs/*']
},
install_requires=[
'setuptools',
# -*- Extra requirements: -*-
'oauth',
'simplejson',
'requests',
],
data_files=data_files,
)