Skip to content

Commit

Permalink
Working on setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
swizzlevixen committed Jun 25, 2018
1 parent 4ea1def commit c1caa51
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
from setuptools import setup
import setuptools

setup(
# Read in the README file, for the long_description.
with open("README.md", "r") as fh:
long_description = fh.read()


setuptools.setup(
name="letterboxd",
packages=["letterboxd, letterboxd.services"],
packages=["letterboxd", "letterboxd.services", "tests"],
version="0.1.0",
description="Python 3.6+ wrapper for Letterboxd API",
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",
Expand Down

0 comments on commit c1caa51

Please sign in to comment.