Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 1.8 KB

You have to be logged in to leave a comment. Sign In
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
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from setuptools import setup
  4. with open('README.rst') as readme_file:
  5. readme = readme_file.read()
  6. with open('HISTORY.rst') as history_file:
  7. history = history_file.read()
  8. requirements = [
  9. 'face_recognition_models>=0.3.0',
  10. 'Click>=6.0',
  11. 'dlib>=19.7',
  12. 'numpy',
  13. 'Pillow'
  14. ]
  15. test_requirements = [
  16. 'tox',
  17. 'flake8'
  18. ]
  19. setup(
  20. name='face_recognition',
  21. version='1.3.0',
  22. description="Recognize faces from Python or from the command line",
  23. long_description=readme + '\n\n' + history,
  24. author="Adam Geitgey",
  25. author_email='ageitgey@gmail.com',
  26. url='https://github.com/ageitgey/face_recognition',
  27. packages=[
  28. 'face_recognition',
  29. ],
  30. package_dir={'face_recognition': 'face_recognition'},
  31. package_data={
  32. 'face_recognition': ['models/*.dat']
  33. },
  34. entry_points={
  35. 'console_scripts': [
  36. 'face_recognition=face_recognition.face_recognition_cli:main',
  37. 'face_detection=face_recognition.face_detection_cli:main'
  38. ]
  39. },
  40. install_requires=requirements,
  41. license="MIT license",
  42. zip_safe=False,
  43. keywords='face_recognition',
  44. classifiers=[
  45. 'Development Status :: 4 - Beta',
  46. 'Intended Audience :: Developers',
  47. 'License :: OSI Approved :: MIT License',
  48. 'Natural Language :: English',
  49. "Programming Language :: Python :: 2",
  50. 'Programming Language :: Python :: 2.7',
  51. 'Programming Language :: Python :: 3',
  52. 'Programming Language :: Python :: 3.5',
  53. 'Programming Language :: Python :: 3.6',
  54. 'Programming Language :: Python :: 3.7',
  55. 'Programming Language :: Python :: 3.8',
  56. ],
  57. test_suite='tests',
  58. tests_require=test_requirements
  59. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...