File: setup.py

package info (click to toggle)
python-scruffy 0.3.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 208 kB
  • sloc: python: 638; makefile: 4
file content (22 lines) | stat: -rwxr-xr-x 551 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
from setuptools import setup

with open("README.rst", "r") as fp:
    long_description = fp.read()

setup(
    name="scruffington",
    version="0.3.10",
    author="snare",
    author_email="snare@ho.ax",
    long_description=long_description,
    long_description_content_type="text/x-rst",
    description=("The janitor"),
    license="MIT",
    keywords="scruffy",
    url="https://github.com/snare/scruffy",
    packages=['scruffy'],
    install_requires=[
        'importlib-resources>=1.1.0; python_version < "3.7"',
        'pyyaml',
    ],
)