-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathsetup.py
60 lines (55 loc) · 1.68 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import tkltest
from setuptools import setup, find_packages
from setuptools.command.install import install
# class TkltestInstall(install):
# """Install and download nltk data"""
# def run(self):
# install.run(self)
# import nltk
# nltk.download('stopwords')
# nltk.download('averaged_perceptron_tagger')
# nltk.download('wordnet')
# nltk.download('words')
# nltk.download('omw-1.4')
setup(
name='tkltest',
version=tkltest.__version__,
description='Command-line interface for generating and executing test cases on'
'two application versions and performing differential testing',
packages=find_packages(),
install_requires=[
'coverage==7.3.0',
'green==3.4.3',
'PyYAML==6.0.1',
'tabulate==0.9.0',
'textile==4.0.2',
'toml==0.10.2',
'yattag==1.15.0',
'jinja2==3.1.2',
'beautifulsoup4==4.12.0',
'kaitaistruct==0.9',
'psutil==5.9.5',
'tqdm==4.66.0',
"setuptools; python_version >= '3.12'",
# 'nltk==3.6.7',
# 'pyenchant==3.2.2',
# 'lxml==4.9.1',
# 'xmltodict==0.12.0',
# 'keybert==0.7.0',
# 'pandas==1.4.3'
],
# setup_requires=['nltk==3.6.7'],
# cmdclass={'install': TkltestInstall},
entry_points={
"console_scripts": [
"tkltest-unit = tkltest.unit.tkltest_unit:main",
"tkltest-ui = tkltest.ui.tkltest_ui:main"
]
},
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: APL-2.0',
'Operating System :: OS Independent'
]
)