From 398ea7af2378d0b59fb8cae3388cca5fd63ae55d Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Tue, 8 Apr 2014 13:05:30 -0300 Subject: [PATCH] setup and install --- MANIFEST.in | 1 + README | 1 + luncho/__init__.py | 2 +- setup.py | 26 ++++++++++++++++++++++++++ 4 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in create mode 120000 README create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..f9bd145 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include requirements.txt diff --git a/README b/README new file mode 120000 index 0000000..42061c0 --- /dev/null +++ b/README @@ -0,0 +1 @@ +README.md \ No newline at end of file diff --git a/luncho/__init__.py b/luncho/__init__.py index 5413cba..03de71f 100644 --- a/luncho/__init__.py +++ b/luncho/__init__.py @@ -1,4 +1,4 @@ #!/usr/bin/env python # -*- encoding: utf-8 -*- - +VERSION = '0.0.1' diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..dc19246 --- /dev/null +++ b/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' + ])