-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 1002 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="finding_mnemo",
version="0.0.1",
author="Simon Popelier",
author_email="[email protected]",
description=("Finding mnemonics using different AI tools."),
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Text Processing :: Linguistic",
],
license="BSD",
keywords=["mnemonic", "chinese", "mandarin", "english", "search", "phonetic"],
packages=find_packages(),
package_data={
'finding_mnemo': ['pairing/training/config.yaml', 'pairing/model/model_config.json', 'pairing/model/model_dict', 'pairing/dataset/data/english.csv'],
},
include_package_data=True
)