-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.09 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
import setuptools
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name="facex", # Replace with your own username
version="1.1.0",
author="Hasby Fahrudin",
author_email="[email protected]",
description="Lightweight, High-Performance Facial Expression Classifier",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hfahrudin/facex",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
include_package_data=True, # Ensure this is True
package_data={
"facex": ["assets/*.tflite", "assets/*.xml"], # Include specific files
},
install_requires=[
'scikit-image>=0.16.2',
'tensorflow>=2.0.0',
'opencv-contrib-python>=4.10.0.84',
],
python_requires='>=3.6',
)