setup.py → pyproject.toml

pull/339/head
codl 2023-04-24 17:28:17 +02:00
rodzic 3d5b94f07f
commit fc3a873062
2 zmienionych plików z 64 dodań i 60 usunięć

63
pyproject.toml 100644
Wyświetl plik

@ -0,0 +1,63 @@
[build-system]
requires = ["setuptools"]
build-backend= "setuptools.build_meta"
[project]
name = "Mastodon.py"
version = "1.8.1"
description = "Python wrapper for the Mastodon API"
readme = "README.rst"
authors = [
{ name = "Lorenz Diener", email = "lorenzd+mastodonpypypi@gmail.com" },
]
license = {text = "MIT"}
keywords = ["mastodon", "api", "microblogging"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
dependencies = [
'requests>=2.4.2',
'python-dateutil',
'six',
'python-magic-bin ; platform_system=="Windows"',
'python-magic ; platform_system!="Windows"',
'decorator>=4.0.0',
'blurhash>=1.1.4',
]
[project.optional-dependencies]
webpush = [
# when adding/updating deps, don't forget to update the test deps
'http_ece>=1.0.5',
'cryptography>=1.6.0',
]
blurhash = [
# when adding/updating deps, don't forget to update the test deps
'blurhash>=1.1.4',
]
test = [
# webpush deps
'http_ece>=1.0.5',
'cryptography>=1.6.0',
# blurhash deps
'blurhash>=1.1.4',
'pytest',
'pytest-runner',
'pytest-cov',
'vcrpy',
'pytest-vcr',
'pytest-mock',
'requests-mock',
'pytz',
]
[project.urls]
Repository="https://github.com/halcy/Mastodon.py"
Documentation="https://mastodonpy.readthedocs.io/"

Wyświetl plik

@ -1,62 +1,3 @@
from pathlib import Path
from setuptools import setup
test_deps = [
'pytest',
'pytest-runner',
'pytest-cov',
'vcrpy',
'pytest-vcr',
'pytest-mock',
'requests-mock',
'pytz'
]
webpush_deps = [
'http_ece>=1.0.5',
'cryptography>=1.6.0',
]
blurhash_deps = [
'blurhash>=1.1.4',
]
extras = {
"test": test_deps + webpush_deps + blurhash_deps,
"webpush": webpush_deps,
"blurhash": blurhash_deps,
}
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(name='Mastodon.py',
version='1.8.1',
description='Python wrapper for the Mastodon API',
long_description=long_description,
long_description_content_type='text/x-rst',
packages=['mastodon'],
install_requires=[
'requests>=2.4.2',
'python-dateutil',
'six',
'python-magic-bin ; platform_system=="Windows"', # pragma: no cover
'python-magic ; platform_system!="Windows"',
'decorator>=4.0.0',
] + blurhash_deps,
tests_require=test_deps,
extras_require=extras,
url='https://github.com/halcy/Mastodon.py',
author='Lorenz Diener',
author_email='lorenzd+mastodonpypypi@gmail.com',
license='MIT',
keywords='mastodon api microblogging',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
])
setup()