forked from Mic92/nixpkgs-review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 949 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import sys
from setuptools import find_packages, setup
assert sys.version_info >= (3, 6, 0), "nixpkgs-review requires Python 3.6+"
setup(
name="nixpkgs-review",
version="2.7.0",
description="Review nixpkgs pull requests",
author="Jörg Thalheim",
author_email="[email protected]",
url="https://github.com/Mic92/nixpkgs-review",
license="MIT",
packages=find_packages(),
package_data={"nixpkgs_review": ["nix/*.nix"]},
entry_points={
"console_scripts": [
"nix-review = nixpkgs_review:main",
"nixpkgs-review = nixpkgs_review: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",
],
)