Skip to content

Commit

Permalink
Merge pull request #4 from agronholm/setup_py
Browse files Browse the repository at this point in the history
Minor improvements to setup.py
  • Loading branch information
njsmith authored Dec 4, 2016
2 parents 3cf634e + 5c12c09 commit 4caabc8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 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,14 +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",
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 4caabc8

Please sign in to comment.