diff --git a/setup.py b/setup.py index 3b36c87..1fd5c5a 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,12 @@ import setuptools # Read in the README file, for the long_description. -with open("README.md", "r") as fh: +with open("README.markdown", "r") as fh: long_description = fh.read() - setuptools.setup( name="letterboxd", - packages=["letterboxd", "letterboxd.services", "tests"], + packages=setuptools.find_packages(), version="0.1.0", description="Python 3.6+ wrapper for the Letterboxd API", long_description=long_description, @@ -15,9 +14,19 @@ author="Mark Boszko", author_email="mboszko@mac.com", copyright="Copyright (c) 2018 Mark Boszko", - url="http://github.com/bobtiki/letterboxd", + url="https://github.com/bobtiki/letterboxd/", download_url="", - keywords=["api", "movies"], - classifiers=["Programming Language :: Python :: 3"], + keywords=[ + "api", + "movies", + ], # movie, the movie database, movie database, tmdb, wrapper, database, themoviedb, moviedb, api + classifiers=[ + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3.6", + "Operating System :: OS Independent", + "License :: OSI Approved :: MIT License", + "Topic :: Utilities", + "Topic :: Internet :: WWW/HTTP :: Dynamic Content", + ], license="MIT", )