Migrate to pyproject.toml/setup.cfg, v0.2.0
This commit is contained in:
parent
9bcf2d964b
commit
c4fe7ae144
3 changed files with 26 additions and 30 deletions
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[build-system]
|
||||||
|
requires = ["setuptools", "wheel"]
|
||||||
|
build-backend = "setuptools.build_meta"
|
23
setup.cfg
Normal file
23
setup.cfg
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
[metadata]
|
||||||
|
name = pass2csv
|
||||||
|
version = 0.2.0
|
||||||
|
author = Rupus Reinefjord
|
||||||
|
author_email = rupus@reinefjord.net
|
||||||
|
description = Export pass(1), "the standard unix password manager" to CSV
|
||||||
|
long_description = file: README.md
|
||||||
|
long_description_content_type = text/markdown
|
||||||
|
url = https://github.com/reinefjord/pass2csv
|
||||||
|
classifiers =
|
||||||
|
Development Status :: 4 - Beta
|
||||||
|
Environment :: Console
|
||||||
|
Intended Audience :: End Users/Desktop
|
||||||
|
License :: OSI Approved :: MIT License
|
||||||
|
Programming Language :: Python
|
||||||
|
Programming Language :: Python :: 3
|
||||||
|
Programming Language :: Python :: 3.6
|
||||||
|
Topic :: Utilities
|
||||||
|
|
||||||
|
[options]
|
||||||
|
scripts = pass2csv
|
||||||
|
python_requires = >= 3.6
|
||||||
|
install_requires = python-gnupg
|
30
setup.py
30
setup.py
|
@ -1,30 +0,0 @@
|
||||||
import setuptools
|
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
|
||||||
long_description = fh.read()
|
|
||||||
|
|
||||||
setuptools.setup(
|
|
||||||
name="pass2csv",
|
|
||||||
version="0.1.3",
|
|
||||||
author="Rupus Reinefjord",
|
|
||||||
author_email="rupus@reinefjord.net",
|
|
||||||
description='Export pass(1), "the standard unix password manager", to CSV',
|
|
||||||
long_description=long_description,
|
|
||||||
long_description_content_type="text/markdown",
|
|
||||||
install_requires=["python-gnupg"],
|
|
||||||
scripts=["pass2csv"],
|
|
||||||
url="https://github.com/reinefjord/pass2csv",
|
|
||||||
classifiers=[
|
|
||||||
"Development Status :: 4 - Beta",
|
|
||||||
"License :: OSI Approved :: MIT License",
|
|
||||||
"Programming Language :: Python",
|
|
||||||
"Environment :: Console",
|
|
||||||
"Intended Audience :: End Users/Desktop",
|
|
||||||
"Topic :: Utilities",
|
|
||||||
"Programming Language :: Python :: 3",
|
|
||||||
"Programming Language :: Python :: 3.6",
|
|
||||||
"Programming Language :: Python :: 3.7",
|
|
||||||
"Programming Language :: Python :: 3.8"
|
|
||||||
],
|
|
||||||
python_requires='>=3.6'
|
|
||||||
)
|
|
Loading…
Reference in a new issue