25 lines
758 B
Python
25 lines
758 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>=3.5,<3.6", "black"]},
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Topic :: Utilities",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.6",
|
|
],
|
|
)
|