Browse Source

setup and install

master
Julio Biason 10 years ago
parent
commit
398ea7af23
  1. 1
      MANIFEST.in
  2. 1
      README
  3. 2
      luncho/__init__.py
  4. 26
      setup.py

1
MANIFEST.in

@ -0,0 +1 @@
include requirements.txt

1
README

@ -0,0 +1 @@
README.md

2
luncho/__init__.py

@ -1,4 +1,4 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
VERSION = '0.0.1'

26
setup.py

@ -0,0 +1,26 @@
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup
from setuptools import find_packages
from luncho import VERSION
setup(name='luncho',
version=VERSION,
description='Democratic lunching',
long_description=file('README.md').read(),
author='Julio Biason',
author_email='julio.biason@gmail.com',
url='https://github.com/jbiason/lunch-o',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Utilities',
'Operating System :: OS Independent'
])
Loading…
Cancel
Save