Skip to content

Instantly share code, notes, and snippets.

@bcicen
Created June 21, 2014 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bcicen/928475e3a128bddc413a to your computer and use it in GitHub Desktop.
Save bcicen/928475e3a128bddc413a to your computer and use it in GitHub Desktop.
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.md')) as f:
CHANGES = f.read()
requires = [
'redis',
'pyramid',
]
setup(name='vagabond',
version='0.0',
description='vagabond',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Programming Language :: Python :: 2.7",
"Natural Language :: English",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
],
author='Kevin Schoon',
author_email='vagabond.workplaces@gmail.com',
url='http://vagabondworkplaces.com',
use_2to3=True,
keywords='web',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
tests_require=requires,
test_suite="vagabond",
# entry_points="""\
# [paste.app_factory]
# main = vagabond:main
# """,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment