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' + ])