-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 856 Bytes
/
setup.py
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
from setuptools import setuptools, find_packages
import io
classifiers = [
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
with io.open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setuptools.setup(
name="PyDictAPI",
version="1.6.0",
author="Shawan Mandal",
author_email="[email protected]",
description="An advanced Dictionary and Translator Module for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/imshawan/PyDictAPI",
packages=find_packages(),
classifiers=classifiers,
install_requires=[
'bs4',
'requests',
'urllib3'
]
)