setup   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 23
dl 0
loc 26
rs 10
c 0
b 0
f 0
1
import pathlib
2
from setuptools import setup
3
4
HERE: pathlib.Path = pathlib.Path(__file__).parent
5
README: str = (HERE / "README.md").read_text()
6
7
setup(
8
    name="sublinput",
9
    version="1.0.1",
10
    description="An input pygame alternative for sublime text users.",
11
    long_description=README,
12
    long_description_content_type="text/markdown",
13
    url="https://github.com/Sigmanificient/pg-sublime-input",
14
    author="Sigmanificient",
15
    author_email="[email protected]",
16
    license="MIT",
17
    classifiers=[
18
        "License :: OSI Approved :: MIT License",
19
        "Programming Language :: Python :: 3.6",
20
        "Programming Language :: Python :: 3.7",
21
        "Programming Language :: Python :: 3.8",
22
    ],
23
    packages=["sublinput"],
24
    include_package_data=True,
25
    install_requires=["pygame"]
26
)
27