6.NUR/setup.py
Jörg Thalheim d2e3c33ba7 speedup travis by avoid nix-shell for scripts
At the moment many build-time dependencies are downloaded.
2018-08-13 10:23:22 +02:00

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