-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 878 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 878 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
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='encoding_tools',
version="0.0.3",
description="A package to deal with encoding.",
long_description=long_description,
long_description_content_type='text/markdown',
author='Thomas Berdy',
author_email='thomas.berdy@outlook.com',
url='https://github.com/Tberdy/encoding_tools',
packages=[
'encoding_tools'
],
classifiers=(
'Programming Language :: Python :: 3',
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules',
),
install_requires=(
'chardet',
'Unidecode',
),
include_package_data=True,
zip_safe=False,
)