未验证 提交 0d923270 编写于 作者: F Frost Ming

add news fragment

上级 372fb6ad
Support installing packages from subdiretories of VCS repository.
# -*- coding: utf-8 -*-
from setuptools import setup
import codecs
with codecs.open('README.rst', encoding="utf-8") as fp:
long_description = fp.read()
INSTALL_REQUIRES = [
'requests>=2.6',
'configparser; python_version == "2.7"',
]
EXTRAS_REQUIRE = {
'test': [
'pytest >=2.7.3',
'pytest-cov',
],
'doc': [
'sphinx',
],
}
ENTRY_POINTS = {
'console_scripts': [
'flit = flit:main',
],
'pygments.lexers': [
'dogelang = dogelang.lexer:DogeLexer',
],
}
setup_kwargs = {
'name': 'pyflit',
'version': '0.1.0',
'description': 'An awesome flit demo',
'long_description': long_description,
'license': None,
'author': '',
'author_email': 'Thomas Kluyver <thomas@kluyver.me.uk>',
'maintainer': None,
'maintainer_email': None,
'url': 'https://github.com/takluyver/flit',
'package_data': {'': ['*']},
'long_description_content_type': 'text/x-rst',
'classifiers': [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
'install_requires': INSTALL_REQUIRES,
'extras_require': EXTRAS_REQUIRE,
'python_requires': '>=3.5',
'entry_points': ENTRY_POINTS,
}
setup(**setup_kwargs)
# -*- coding: utf-8 -*-
from setuptools import setup
long_description = None
INSTALL_REQUIRES = [
'requests<3.0,>=2.6',
]
EXTRAS_REQUIRE = {
'test': [
'pytest<3.0.0,>=2.7.3',
'pytest-covNone',
],
'doc': [
'sphinxNone',
],
}
setup_kwargs = {
'name': 'poetry-demo',
'version': '0.1.0',
'description': None,
'long_description': long_description,
'license': None,
'author': '',
'author_email': 'Thomas Kluyver <thomas@kluyver.me.uk>',
'maintainer': None,
'maintainer_email': None,
'url': 'https://github.com/takluyver/flit',
'package_data': {'': ['*']},
'classifiers': [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
],
'install_requires': INSTALL_REQUIRES,
'extras_require': EXTRAS_REQUIRE,
'python_requires': '>=3.6,<4.0',
}
setup(**setup_kwargs)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册