forked from AlkaSaliss/DEmoClassi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.06 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='democlassi',
version='0.4',
author='A. Alka M. Salissou',
author_email='alkasalissou@hotmail.com',
packages=setuptools.find_packages(exclude=['legacy']),
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*prototxt.txt', '*.caffemodel', '.html'],
},
url='https://github.com/AlkaSaliss/DEmoClassi',
license='LICENSE',
description='Collection of my python functions for training pytorch models to classify emotion, age, race, gender',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"torch",
"torchvision",
"pytorch-ignite",
"imutils",
"dlib",
"kaggle",
"tensorboardX",
],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)