File: setup.py

package info (click to toggle)
debian-crossgrader 0.0.3%2Bnmu4
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,472 kB
  • sloc: python: 840; makefile: 17; sh: 16
file content (36 lines) | stat: -rw-r--r-- 1,073 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import setuptools

def readme():
    with open('README.md', 'r') as f:
        return f.read()

setuptools.setup(
    name='debian_crossgrader',
    version='0.0.3',
    author='Kevin Wu',
    author_email='kevin@kevinniuwu.com',
    description='Debian crossgrading tool',
    long_description=readme(),
    long_description_content_type='text/markdown',
    url='https://salsa.debian.org/crossgrading-team/debian-crossgrading',
    packages=setuptools.find_packages(),
    include_package_data=True,
    license='GPL-2+',
    platforms=['Debian'],
    classifiers=[
        'Programming Language :: Python :: 3',
        'Operating System :: POSIX :: Linux',
        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)'
    ],
    python_requires='>=3.4',
    install_requires=[
        'platformdirs',
        'python-apt>=1.0.0'
    ],
    entry_points={
        'console_scripts': [
            'crossgrader=debian_crossgrader.__main__:main',
            'crossgrade-package-check=debian_crossgrader.tools.package_check:main'
        ]
    }
)