-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
109 lines (93 loc) · 2.93 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""setup.py for buscemizer"""
import codecs
import re
import sys
import os
from setuptools import setup, find_packages
from setuptools.command.test import test
def find_version(*file_paths):
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *file_paths), 'r') as fp:
version_file = fp.read()
m = re.search(r"^__version__ = \((\d+), ?(\d+), ?(\d+)\)", version_file, re.M)
if m:
return "{}.{}.{}".format(*m.groups())
raise RuntimeError("Unable to find a valid version")
NAME = "buscemizer"
SAFE_NAME = NAME.replace("-", "_")
VERSION = find_version(NAME, "__init__.py")
DESCRIPTION = "Add Steve Buscemi's beautiful facial features to facial photos!"
AUTHOR = "Nathan Douglas Klapstein"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/nklapste/buscemizer"
DOWNLOAD_URL = URL + "/archive/master.zip"
class Pylint(test):
def run_tests(self):
from pylint.lint import Run
errno = Run([SAFE_NAME, "--persistent", "y", "--rcfile", ".pylintrc"])
sys.exit(errno)
class PyTest(test):
user_options = [('pytest-args=', 'a', "Arguments to pass to pytest")]
def initialize_options(self):
test.initialize_options(self)
self.pytest_args = "-v --cov={}".format(SAFE_NAME)
def run_tests(self):
import shlex
# import here, cause outside the eggs aren't loaded
import pytest
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
def readme():
with open("README.rst", encoding="utf-8") as f:
return f.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=readme(),
long_description_content_type="text/x-rst",
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
license="MIT",
packages=find_packages(exclude=["test"]),
include_package_data=True,
package_data={
"": ["README.rst", "examples/*.jpg"],
"buscemizer": ["images/*.png"]
},
entry_points={
"console_scripts": [
"buscemizer = buscemizer.__main__:main"
]
},
classifiers=[
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
install_requires=[
"face-recognition>=1.2.2,<2.0.0",
"pillow>=6.2.0,<7.0.0",
"numpy>=1.15.0,<2.0.0"
],
tests_require=[
"pytest",
"pytest-cov",
"pytest-timeout",
"pylint>=1.9.1,<2.0.0",
],
extras_require={
"docs": [
"sphinx>=1.7.5,<2.0.0",
"sphinx_rtd_theme>=0.3.1,<1.0.0",
"sphinx-autodoc-typehints>=1.3.0,<2.0.0",
"sphinx-argparse>=0.2.2,<1.0.0",
]
},
cmdclass={"test": PyTest, "lint": Pylint},
)