6.NUR/setup.py
2021-10-10 09:51:06 +02:00

27 lines
763 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
assert sys.version_info >= (3, 6, 0), "nur requires Python 3.6+"
setup(
name="nur",
version="0.0.1",
description="Tooling to maintain NUR",
author="Jörg Thalheim",
author_email="joerg@thalheim.io",
url="https://github.com/nix-community/nur",
license="MIT",
packages=find_packages(),
entry_points={"console_scripts": ["nur = nur:main"]},
extras_require={
"dev": ["mypy", "flake8", "black"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
],
)