-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1013 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
31
32
33
import setuptools
from kaplan import __version__
with open('README.md', 'r') as input_file:
long_description = input_file.read()
setuptools.setup(
name='kaplan',
version=__version__,
author='Kaplan',
author_email='[email protected]',
description='A computer-assisted translation tool package',
keywords = ['CAT', 'computer-assisted translation', 'computer-aided translation', 'translation', 'free-to-use'],
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/kaplanPRO/kaplanpy',
project_urls = {
'Kaplan Homepage': 'https://kaplan.pro',
},
packages=setuptools.find_packages(),
install_requires=[
'lxml',
'regex'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)