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',
],
)
|