-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
36 lines (30 loc) · 1.1 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
import sys
from os import path
from setuptools import find_packages, setup
assert sys.version_info[0] == 3, "facer requires Python 3."
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
requirements = []
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="facer",
description="Simple face averaging in Python",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="John W. Miller",
author_email="john.w.millr@gmail.com",
url="https://github.com/johnwmillr/facer",
keywords="face-averaging face-detection opencv",
packages=find_packages(exclude=["tests"]),
install_requires=requirements,
entry_points={"console_scripts": ["facer = facer.__main__:main"]},
classifiers=[
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)