0b731f3 by Anon Ray at 2013-12-27 1
import os
2
from setuptools import setup, find_packages
3
4
here = os.path.abspath(os.path.dirname(__file__))
5
#README = open(os.path.join(here, 'README.rst')).read()
6
#CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
7
8
requires = [
9
    'Flask',
2431ed7 by Anon Ray at 2014-08-25 10
    'requests',
11
    'lxml'
0b731f3 by Anon Ray at 2013-12-27 12
]
13
14
setup(name='Swtr',
15
      version='0.1',
16
      description='Social Semantic Decentralized Web - Sweet Web - Web Service',
17
      license='BSD',
18
      classifiers=[
19
          "Development Status :: 1 - pre-alpha",
20
          "Intended Audience :: Developers",
21
          "Environment :: Web Environment",
22
          "License :: OSI Approved :: BSD License",
23
          "Operating System :: OS Independent",
24
          "Programming Language :: JavaScript",
25
          "Programming Language :: Python",
26
          "Programming Language :: Python :: 2.7",
27
          "Topic :: Internet",
28
          "Topic :: Internet :: WWW/HTTP :: Semantic Web :: Social Web ::\
29
          Accessibilty",
30
      ],
31
      author='Anon Ray',
32
      author_email='rayanon@riseup.net',
33
      url='https://git.pantoto.org/sweet-web/swtr',
34
      keywords='',
35
      packages=find_packages(),
36
      include_package_data=True,
37
      zip_safe=False,
38
      install_requires=requires,
39
     )