-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
28 lines (27 loc) · 1.14 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='pybossa-onesignal',
version='1.1',
packages=find_packages(),
install_requires=['requests>=0.13.0'],
# metadata for upload to PyPI
author='Scifabric LTD',
# TODO: change
author_email='[email protected]',
description='pybossa-onesignal is a small library to send Web PUSH notifications within PYBOSSA ecosystem.',
long_description='''PYBOSSA is a crowdsourcing framework. This tiny library allows you to send Web PUSH notifications to your users.''',
license='AGPLv3',
url='https://github.com/Scifabric/pybossa-onesignal',
download_url='https://github.com/Scifabric/pybossa-onesignal/zipball/master',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points=''''''
)