Skip to content

Commit

Permalink
Fix entry points
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenglongMa committed Aug 5, 2022
1 parent 5e2061b commit dce2fc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
from setuptools import find_packages

VERSION = '0.1.1'
VERSION = '0.1.2'

with open('README.md') as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -12,23 +12,22 @@
description='An easy-to-use library for skin tone classification',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages("skin-tone-classifier"),
package_dir={"": "skin-tone-classifier"},
packages=find_packages("src"),
package_dir={"": "src"},
zip_safe=False,

author='Chenglong Ma',
author_email='[email protected]',
keywords='skin tone, image recognition, face detection',
keywords='skin-tone image-recognition face-detection',
url='https://chenglongma.com/SkinToneClassifier/',
project_urls={
"Documentation": "https://chenglongma.com/SkinToneClassifier/",
"Code": "https://github.com/ChenglongMa/SkinToneClassifier",
"Issue tracker": "https://github.com/ChenglongMa/SkinToneClassifier/issues",
},

entry_points={
'console_scripts': [
'stone=skin-tone-classifier:main'
'stone=src.main'
],
},
install_requires=[
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit dce2fc1

Please sign in to comment.