-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1.01 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
#!/usr/bin/env python
from __future__ import print_function
from setuptools import setup, find_packages
deps = ['yowsup2', 'peewee']
setup(
name='yowlayer-store',
version="0.1",
url='http://github.com/tgalal/yowlayer-store/',
license='GPL-3+',
author='Tarek Galal',
tests_require=[],
install_requires = deps,
author_email='[email protected]',
description='A Storage layer for yowsup',
packages= find_packages(),
include_package_data=True,
platforms='any',
namespace_packages = ['yowsup_ext', 'yowsup_ext.layers'],
#test_suite='',
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
#'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)