-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1caa51
commit 548014b
Showing
1 changed file
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,32 @@ | ||
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, | ||
long_description_content_type="text/markdown", | ||
author="Mark Boszko", | ||
author_email="[email protected]", | ||
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", | ||
) |