-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 751 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 751 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
from setuptools import setup, find_packages
setup(
name='dputils',
version='1.0.1',
description='This library is utility library from digipodium',
author='Team Digipodium, Zaid Kamil, AkulS1008',
author_email='info@digipodium.com',
url='https://github.com/digipodium/dputils',
packages=find_packages(),
install_requires=[
'docx2txt>=0.8',
'pdfminer.six>=20220524',
'fpdf2>=2.5.4',
'bs4>=0.0.1',
'python-docx>=0.8.11',
'httpx[http2]>=0.25.1',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)