diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-02-11 17:31:29 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-02-11 17:31:55 +0100 |
commit | 735fb85228aad0fa5326f4235e349e360631823c (patch) | |
tree | 74667b1cc651337df06054d5574a61390e0f05b6 /setup.py | |
parent | 60b537c2bf2f9d1b9467d173681241c51b58ead2 (diff) | |
download | gemato-735fb85228aad0fa5326f4235e349e360631823c.tar.gz |
Switch to flit
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index 697adcd..0000000 --- a/setup.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python -# vim:fileencoding=utf-8 -# (C) 2017-2020 Michał Górny <mgorny@gentoo.org> -# Licensed under the terms of 2-clause BSD license - -from setuptools import setup - - -setup( - name='gemato', - version='16.2', - description='Gentoo Manifest Tool -- a stand-alone utility to verify and update Gentoo Manifest files', - - author='Michał Górny', - author_email='mgorny@gentoo.org', - license='BSD', - url='http://github.com/mgorny/gemato', - - packages=['gemato'], - entry_points={ - 'console_scripts': [ - 'gemato=gemato.cli:setuptools_main', - ], - }, - - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Environment :: Console', - 'Intended Audience :: System Administrators', - 'License :: OSI Approved :: BSD License', - 'Operating System :: POSIX', - 'Programming Language :: Python :: 3 :: Only', - 'Topic :: Security :: Cryptography', - ] -) |