Skip to content

Commit

Permalink
Groom setup.py a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhukovAlexander committed Nov 10, 2016
1 parent 8f826ff commit e152284
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@

tests_require = ['pytest', 'Sphinx']

setup(name = "curio",
description="Curio - Concurrent I/O",
long_description = """
Curio is a library for performing concurrent I/O with coroutines in Python 3.
""",
license="""BSD""",
version = "0.4",
author = "David Beazley",
author_email = "dave@dabeaz.com",
maintainer = "David Beazley",
maintainer_email = "dave@dabeaz.com",
url = "https://github.com/dabeaz/curio",
packages = ['curio'],
tests_require = tests_require,
extras_require = {
'test': tests_require,
},
classifiers = [
'Programming Language :: Python :: 3',
]
)
long_description = """
Curio is a library for performing concurrent I/O with coroutines in Python 3.
"""


setup(name="curio",
description="Curio - Concurrent I/O",
long_description=long_description,
license="BSD",
version="0.4",
author="David Beazley",
author_email="dave@dabeaz.com",
maintainer="David Beazley",
maintainer_email="dave@dabeaz.com",
url="https://github.com/dabeaz/curio",
packages=['curio'],
tests_require=tests_require,
extras_require={
'test': tests_require,
},
classifiers=[
'Programming Language :: Python :: 3',
])

0 comments on commit e152284

Please sign in to comment.