File: setup.py

package info (click to toggle)
pygopherd 3.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,928 kB
  • sloc: python: 6,534; makefile: 40; sh: 28
file content (18 lines) | stat: -rw-r--r-- 650 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python3
import setuptools

setuptools.setup(
    name="pygopherd",
    version="3.0.1",
    description="Multiprotocol Internet Gopher Information Server",
    author="Michael Lazar",
    author_email="lazar.michael22@gmail.com",
    python_requires=">=3.7",
    url="https://www.github.com/michael-lazar/pygopherd",
    packages=["pygopherd", "pygopherd.handlers", "pygopherd.protocols"],
    scripts=["bin/pygopherd"],
    # Commenting out to prevent overwriting system files when upgrading package
    # data_files=[("/etc/pygopherd", ["conf/pygopherd.conf", "conf/mime.types"])],
    test_suite="pygopherd",
    license="GPLv2",
)