forked from nborrmann/jodel_api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 loc) · 1.18 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
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
long_description = f.read()
setup(name='jodel_ios_api',
version='1.0.3',
description='Unoffical Python Interface to the Jodel API (based on iOS)',
long_description=long_description,
url='https://github.com/marbink/jodel_ios_api',
author='marbink',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='jodel',
package_dir={'': 'src'},
install_requires=['requests', 'future', 'simplejson'],
packages=find_packages('src'),
zip_safe=False)