Commit 0b731f3c4150c539053c2783285d68a4087902d7
- Diff rendering mode:
- inline
- side by side
setup.py
(37 / 0)
  | |||
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', | ||
10 | ] | ||
11 | |||
12 | setup(name='Swtr', | ||
13 | version='0.1', | ||
14 | description='Social Semantic Decentralized Web - Sweet Web - Web Service', | ||
15 | license='BSD', | ||
16 | classifiers=[ | ||
17 | "Development Status :: 1 - pre-alpha", | ||
18 | "Intended Audience :: Developers", | ||
19 | "Environment :: Web Environment", | ||
20 | "License :: OSI Approved :: BSD License", | ||
21 | "Operating System :: OS Independent", | ||
22 | "Programming Language :: JavaScript", | ||
23 | "Programming Language :: Python", | ||
24 | "Programming Language :: Python :: 2.7", | ||
25 | "Topic :: Internet", | ||
26 | "Topic :: Internet :: WWW/HTTP :: Semantic Web :: Social Web ::\ | ||
27 | Accessibilty", | ||
28 | ], | ||
29 | author='Anon Ray', | ||
30 | author_email='rayanon@riseup.net', | ||
31 | url='https://git.pantoto.org/sweet-web/swtr', | ||
32 | keywords='', | ||
33 | packages=find_packages(), | ||
34 | include_package_data=True, | ||
35 | zip_safe=False, | ||
36 | install_requires=requires, | ||
37 | ) |