/
valemobil
/
dataclasses
Обзор
Документация
Войти
/
valemobil
/
dataclasses
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
setup.py
24 строки
744 B
Eric V. Smith
Prepare for 0.8 release.
13 ноя 2020, 17:26
13 ноя 2020, 17:26
95d2a4c
Код
Авторство
О чём код?
from setuptools import setup with open("README.rst") as readme: README = readme.read() setup( name="dataclasses", version="0.8", 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", 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", ], py_modules=["dataclasses"], python_requires=">=3.6, <3.7", )