mirror of
https://github.com/openzim/zimit.git
synced 2025-12-31 04:23:15 +00:00
33 lines
906 B
Python
33 lines
906 B
Python
import os
|
|
from setuptools import setup, find_packages
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
with open(os.path.join(here, 'README.rst')) as f:
|
|
README = f.read()
|
|
|
|
|
|
setup(name='zimit',
|
|
version=0.1,
|
|
description='zimit',
|
|
long_description=README,
|
|
classifiers=[
|
|
"Programming Language :: Python",
|
|
"Framework :: Pylons",
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
|
|
],
|
|
keywords="web services",
|
|
author='',
|
|
author_email='',
|
|
url='',
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
zip_safe=False,
|
|
install_requires=['cornice', 'waitress', 'rq', 'colander',
|
|
'python-slugify', 'pyramid_mailer'],
|
|
entry_points="""\
|
|
[paste.app_factory]
|
|
main=zimit:main
|
|
""",
|
|
paster_plugins=['pyramid'])
|