-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1015 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
from setuptools import setup
from os.path import abspath, dirname, join
root_dir = abspath(dirname(__file__))
with open(join(root_dir, "README.md")) as f:
long_description = f.read()
setup(
name = 'csv-to-tmx',
packages = ['csv_to_tmx'],
package_dir = {'csv_to_tmx': 'csv_to_tmx'},
version = '0.0.0',
description = 'Creates a tmx file from a csv',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Victoria Mak',
author_email = '[email protected]',
url = 'https://github.com/mak4lab/csv-to-tmx',
download_url = 'https://github.com/mak4lab/csv-to-tmx/tarball/download',
keywords = ['parallel corpus', 'machine translation', 'nmt', 'csv', 'tmx', 'translation memory', 'mt', 'sentence alignment'],
classifiers = [
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: CC0 1.0 Universal",
"Operating System :: OS Independent",
]
)