Skip to content

Commit

Permalink
This worked
Browse files Browse the repository at this point in the history
  • Loading branch information
mhebing committed Nov 13, 2020
1 parent 34d4692 commit 24d4343
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
from setuptools import setup
from setuptools import setup, find_packages

with open("readme.md", "r") as fh:
long_description = fh.read()

setup(
name='graphite-paper',
version='0.0.2',
version='0.0.6',
description='Graphite Paper',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://www.impactdistillery.com/graphite',
author='Larissa Wunderlich and Marcel Hebing',
author_email='info@impactdistillery.com',
license='None',
packages=['graphite_paper'],
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
"Django",
Expand All @@ -27,4 +27,5 @@
"PyYAML",
"six",
],
include_package_data=True,
)

0 comments on commit 24d4343

Please sign in to comment.