Skip to content

Commit ed2f827

Browse files
Template-ify the setup.py
1 parent 911ce53 commit ed2f827

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
except:
1212
REQUIRED = []
1313

14-
setup(name='fast_image_classification',
14+
setup(name='YOUR_API_NAMME',
1515
version='0.1.0',
16-
description='Tiny library for image classification',
17-
author='Youness Mansar',
18-
author_email='mansaryounessecp@gmail.com',
19-
url='https://github.com/CVxTz/FastImageClassification',
16+
description='ADD_A_DESCRIPTION',
17+
author='YOUR_NAME',
18+
author_email='YOUR_EMAIL',
19+
url='YOUR_REPO_URL',
2020
license='MIT',
2121
install_requires=REQUIRED,
2222
classifiers=[
@@ -29,4 +29,4 @@
2929
'Topic :: Software Development :: Libraries',
3030
'Topic :: Software Development :: Libraries :: Python Modules'
3131
],
32-
packages=find_packages(exclude=("example", "app", "data", "docker", "tests")))
32+
packages=find_packages(exclude=("example", "app", "data", "docker", "tests")))

0 commit comments

Comments
 (0)