File: setup.py

package info (click to toggle)
resistor-decoder 1.0%2Bgit20210809.5d4be1c-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 764 kB
  • sloc: python: 2,370; xml: 44; sh: 13; makefile: 3
file content (28 lines) | stat: -rw-r--r-- 1,060 bytes parent folder | download
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
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

# Detail see: https://packaging.python.org/tutorials/packaging-projects/#creating-setup-pypip install -i https://test.pypi.org/simple/ pysetup
setuptools.setup(
    name="ResistorDecoder",
    version="1.0",
    author="Voxel",
    author_email="voxel.aur@gmail.com",
    description="Qt GUI tool for through-hole resistors and SMD parts.",
    long_description=long_description,
    long_description_content_type="text/markdown",
    license="GNU Public License version 3 or later",
    url="https://github.com/VoxelCubes/Resistor-Color-and-SMD-Decoder",
    python_requires='>=3.6',
    packages=setuptools.find_packages(exclude=["release"]),
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: GPLv3 License",
        "Operating System :: OS Independent",
    ],
    install_requires=["pyside6"],
    entry_points={
        "gui_scripts": ["resistor_decoder = ResistorDecoder.src.main:main"],
    },
)