Skip to content

Commit

Permalink
Include description
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrugman committed May 11, 2020
1 parent a4a1071 commit 66f0700
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup
from setuptools import find_packages
from pathlib import Path

from setuptools import find_packages, setup

extras_requires = {
"dev_docs": ["recommonmark", "sphinx_rtd_theme", "sphinx-autodoc-typehints"],
Expand All @@ -9,9 +9,13 @@

tests_require = ["pytest"]

source_root = Path(".")
with (source_root / "README.md").open(encoding="utf-8") as f:
long_description = f.read()

setup(
name="tangled_up_in_unicode",
version="0.0.5",
version="0.0.6",
description="Access to the Unicode Character Database (UCD)",
url="https://github.com/dylan-profiler/tangled-up-in-unicode",
license="BSD 4-Clause",
Expand All @@ -20,6 +24,8 @@
install_requires=[],
include_package_data=True,
python_requires=">=3.5",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
Expand Down

0 comments on commit 66f0700

Please sign in to comment.