File: setup.py

package info (click to toggle)
python-scruffy 0.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 208 kB
  • sloc: python: 629; makefile: 4
file content (19 lines) | stat: -rwxr-xr-x 473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup

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

setup(
    name="scruffington",
    version="0.3.9",
    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=['pyyaml'],
)