Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setuptools-py2cfg: setup.py --> setup.cfg #72

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
[metadata]
name = mariadb_sequential_partition_manager
version = 0.3.7
description = Manage DB partitions based on sequential IDs
long_description = file: README.md
long_description_content_type = text/markdown
url = http://github.com/letsencrypt/mariadb-sequential-partition-manager
author = J.C. Jones
author_email = [email protected]
license = MPL-2.0
license_files = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
keywords = database

[options]
packages = partitionmanager
install_requires =
pyyaml
python_requires = >=3.8
include_package_data = True
zip_safe = False

[options.entry_points]
console_scripts =
partition-manager=partitionmanager.cli:main

[options.extras_require]
pymysql =
PyMySQL>=1.0.2
25 changes: 1 addition & 24 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,27 +1,4 @@
from setuptools import setup


setup(
name="mariadb-sequential-partition-manager",
version="0.3.7",
description="Manage DB partitions based on sequential IDs",
long_description="Manage MariaDB Partitions based on sequential IDs",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python :: 3",
],
keywords="database",
url="http://github.com/letsencrypt/mariadb-sequential-partition-manager",
author="J.C. Jones",
author_email="[email protected]",
license="Mozilla Public License 2.0 (MPL 2.0)",
zip_safe=False,
include_package_data=True,
python_requires=">=3.6",
install_requires=["pyyaml"],
extras_require={"pymysql": ["PyMySQL >= 1.0.2"]},
packages=["partitionmanager"],
entry_points={"console_scripts": ["partition-manager=partitionmanager.cli:main"]},
options={"build_scripts": {"executable": "/usr/bin/env python3"}},
)
setup()
Loading