-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 961 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (26 loc) · 961 Bytes
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
from setuptools import setup
# reading long description from file
with open('DESCRIPTION.txt') as file:
long_description = file.read()
# specify requirements of your package here
REQUIREMENTS = ['tk', 'Pillow', 'pdf2image', 'pytesseract']
# some more details
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Multimedia :: Graphics :: Capture :: Scanners',
'Programming Language :: Python :: 3.6'
]
# calling the setup function
setup(name='CropNamer',
version='0.0.0',
description='Assists with renaming scanned items',
long_description=long_description,
url='https://github.com/giwl-21/Crop-Namer',
author='Muhsin Wahi-Anwar',
author_email='muhsin.wahianwar@gmail.com',
packages=['source'],
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords='maps location address'
)