-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
28 lines (27 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='diaspy-api',
version='0.6.0',
author='Marek Marecki',
author_email='[email protected]',
url='https://github.com/marekjm/diaspy',
license='GNU GPL v3',
description='Unofficial Python API for Diaspora*',
keywords='diaspy diaspora social network api',
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
packages=find_packages(),
install_requires=['requests', 'python-dateutil'],
extras_require={
'beautifulsoup4': ["beautifulsoup4>=3.2.1"]
}
)