-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (40 loc) · 1.27 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
from setuptools import setup, find_packages
# Get README.md long description to add it to the builded package
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
# Library name (same as "pip install ____")
name='fdhc',
author='Santiago Garcia and Elkin Guerra',
# Package version (MAJOR_VERSION.MINOR_VERSION.MAINTENANCE_VERSION)
version='0.0.1',
url="https://github.com/san99tiago/tesis",
# Simple package description
description='Face detection library implemented with examples',
# Long package description
long_description=long_description,
long_description_content_type="text/markdown",
# Our main folder to build the package
package_dir={'': 'src'},
# Add library dependencies
# install_requires=[
# "numpy",
# "matplotlib",
# "opencv-python",
# ],
# Add devlopment dependencies
extras_require={
"dev": [
"pytest",
],
},
classifiers=[
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
],
license="MIT License",
# Add extra XML and JSONs needed
include_package_data=True
)