-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
23 lines (20 loc) · 816 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
import setuptools
import os
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setuptools.setup(
name="confusables",
version="1.2.0",
author="Nathan Woodger",
author_email="woodgern@gmail.com",
description="A python package providing functionality for matching words that can be confused for eachother, but contain different characters",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/woodgern/confusables",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={'confusables': ['assets/*.json', 'assets/*.txt']},
)