Skip to content

Commit

Permalink
Prep setup.py for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
swizzlevixen committed Jun 25, 2018
1 parent c1caa51 commit 548014b
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions setup.py
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",
)

0 comments on commit 548014b

Please sign in to comment.