diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..540b720 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include requirements.txt \ No newline at end of file diff --git a/setup.py b/setup.py index d22740e..240ae80 100644 --- a/setup.py +++ b/setup.py @@ -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)