Skip to content

Commit

Permalink
Minor improvements to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm committed Dec 3, 2016
1 parent 8d28288 commit 5c12c09
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,3 +1,5 @@
from pathlib import Path

from setuptools import setup, find_packages

from async_generator import __version__
Expand All @@ -6,15 +8,14 @@
name="async_generator",
version=__version__,
description="Async generators for Python 3.5",
long_description=open("README.rst").read(),
long_description=Path(__file__).with_name("README.rst").read_text('utf-8'),
author="Nathaniel J. Smith",
author_email="njs@pobox.com",
license="MIT",
packages=find_packages(),
url="https://github.com/njsmith/async_generator",
py_modules=["async_generator"],
classifiers=[
"Development Status :: 4 - Beta",
'Development Status :: 5 - Production/Stable',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit 5c12c09

Please sign in to comment.