Skip to content
Snippets Groups Projects
Commit abf5b546 authored by Eric V. Smith's avatar Eric V. Smith
Browse files

Merge branch 'issue-146-add-requires-3.6'

parents ae712dd9 44724c45
Branches
Tags 0.7
No related merge requests found
......@@ -70,6 +70,8 @@ Release History
+---------+------------+-------------------------------------+
| Version | Date | Description |
+=========+============+=====================================+
| 0.7 | 2019-10-20 | Require python 3.6 only |
+---------+------------+-------------------------------------+
| 0.6 | 2018-05-17 | Equivalent to Python 3.7.0rc1 |
+---------+------------+-------------------------------------+
| 0.5 | 2018-03-28 | Equivalent to Python 3.7.0b3 |
......
from setuptools import setup
with open('README.rst') as readme:
with open("README.rst") as readme:
README = readme.read()
setup(
name='dataclasses',
version='0.6',
description='A backport of the dataclasses module for Python 3.6',
name="dataclasses",
version="0.7",
description="A backport of the dataclasses module for Python 3.6",
long_description=README,
url='https://github.com/ericvsmith/dataclasses',
author='Eric V. Smith',
author_email='eric@python.org',
license='Apache',
url="https://github.com/ericvsmith/dataclasses",
author="Eric V. Smith",
author_email="eric@python.org",
license="Apache",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
py_modules=['dataclasses']
py_modules=["dataclasses"],
python_requires=">=3.6, <3.7",
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment