-
Notifications
You must be signed in to change notification settings - Fork 53
/
setup.py
52 lines (48 loc) · 1.55 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
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
REQUIRES = [
'oauth2 (>=1.5.211)',
'httplib2 (>=0.8)',
'python_dateutil (>=2.1)',
'lxml (>=2.3.2)',
'nose (>=1.3.0)',
]
INSTALL_REQUIRES=[
'oauth2',
'httplib2',
'python_dateutil',
'lxml',
]
setup(name='snsapi',
version='0.8.1',
description='lightweight middleware for multiple social networking services',
author='Pili Hu',
author_email='[email protected]',
maintainer='Pili Hu',
maintainer_email='[email protected]',
url='https://github.com/hupili/snsapi',
packages=['snsapi', 'snsapi.third', 'snsapi.plugin', 'snsapi.plugin_trial'],
package_data={'snsapi': ['data/*.ini', 'data/*.example']},
data_files=[
('data', ['snsapi/data/init-channel.json.example', 'snsapi/data/snsgui.ini'])
],
include_package_data=True,
scripts=['snscli.py', 'snsgui.py'],
provides=['snsapi'],
requires=REQUIRES,
tests_require=['nose'],
install_requires=INSTALL_REQUIRES,
classifiers=[
'License :: Public Domain',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet',
]
)