File: setup.py

package info (click to toggle)
python-scruffy 0.3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 116 kB
  • sloc: python: 616; makefile: 3
file content (14 lines) | stat: -rwxr-xr-x 323 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from setuptools import setup

setup(
    name="scruffington",
    version="0.3.3",
    author="snare",
    author_email="snare@ho.ax",
    description=("The janitor"),
    license="MIT",
    keywords="scruffy",
    url="https://github.com/snare/scruffy",
    packages=['scruffy'],
    install_requires=['pyyaml', 'six'],
)