Skip to content

Commit

Permalink
bundle requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Janusz Skonieczny committed May 29, 2014
1 parent 85bca78 commit 9b1bd07
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
22 changes: 19 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,40 @@

install_requires = parse_requirements(os.path.join(os.path.dirname(__file__), "requirements.txt"))

with open('README') as readme:
with open('README.md') as readme:
long_description = readme.read()

setup_kwargs = {
'name': "flask-social-blueprint",
'version': "0.5",
'version': "0.5.1",
'packages': find_packages("src"),
'package_dir': {'': 'src'},
'install_requires': [str(r.req) for r in install_requires],

# "package_data": {
# '': ['requirements.txt']
# },

# metadata for upload to PyPI
'author': "Janusz Skonieczny",
'author_email': "js<ą>bravelabs.pl",
'author_email': "js@bravelabs.pl",
'description': "An OAuth based authentication blueprint for flask. Easy to extend and override",
'long_description': long_description,
'license': "MIT",
'keywords': "flask social oauth authentication",
'url': "https://github.com/wooyek/flask-social-blueprint",
'classifiers': [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
}

setup(**setup_kwargs)
Expand Down

0 comments on commit 9b1bd07

Please sign in to comment.