-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (27 loc) · 945 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os
from setuptools import setup
version = '1.0.6rc'
with open(os.path.join(os.path.dirname(__file__), "README.md")) as readme:
long_description = readme.read()
setup(
name='yieldfrom',
version=version,
description="A backport of the `yield from` semantic from Python 3.x to "
"Python 2.7",
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
author='Amir Rachum',
author_email='[email protected]',
url='https://github.com/Nurdok/yieldfrom/',
classifiers=[
'Intended Audience :: Developers',
'Environment :: Console',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
],
keywords='yield,from,yield from,generators,backport,iterators',
py_modules=('yieldfrom',),
)