1 |
# -*- coding: utf-8 -*- |
2 |
""" |
3 |
setup.py |
4 |
~~~~~~~~ |
5 |
|
6 |
:copyright: (c) 2014, swtstore authors. see AUTHORS file for more details. |
7 |
:license: BSD License, see LICENSE for more details. |
8 |
""" |
9 |
|
10 |
""" |
11 |
swtstore |
12 |
-------- |
13 |
|
14 |
The store for decentralized, semantic, social web tweets a.k.a SWeeTs!! |
15 |
|
16 |
""" |
17 |
from setuptools import setup |
18 |
|
19 |
requires = [ |
20 |
'Flask==0.10.1', |
21 |
'Flask-SQLAlchemy==1.0', |
22 |
'sqlalchemy==0.9.4', |
23 |
'Flask-OAuthlib==0.4.3', |
24 |
'requests' |
25 |
] |
26 |
|
27 |
|
28 |
setup( |
29 |
name='swtstore', |
30 |
version='0.1 - alpha', |
31 |
url='https://git.pantoto.org/sweet-web', |
32 |
license='BSD', |
33 |
author='swtstore authors', |
34 |
author_email='rayanon004@gmail.com', |
35 |
description='Server-side store for decentralized, semantic, social, web\ |
36 |
tweets', |
37 |
long_description=__doc__, |
38 |
packages=['swtstore'], |
39 |
zip_safe=False, |
40 |
platforms='any', |
41 |
install_requires=requires, |
42 |
include_package_data=True, |
43 |
classifiers=[ |
44 |
'Development Status :: 1 - Alpha', |
45 |
'Environment :: Web Environment', |
46 |
'Intended Audience :: Developers', |
47 |
'License :: OSI Approved :: BSD License', |
48 |
'Operating System :: OS Independent', |
49 |
'Programming Language :: Python', |
50 |
'Topic :: Internet', |
51 |
'Topic :: Internet :: WWW/HTTP :: Social :: Semantic :: Decentralized', |
52 |
] |
53 |
) |