forked from nix-community/NUR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 758 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/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",
],
)