-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 750 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 750 Bytes
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
from setuptools import setup, find_packages
setup(
name='tst',
version="0.19.1a0",
description='TST Simple Test Runner',
url='http://github.com/daltonserey/tst',
author='Dalton Serey',
author_email='daltonserey@gmail.com',
maintainer='Dalton Serey',
maintainer_email='daltonserey@gmail.com',
license='MIT',
packages=find_packages(),
py_modules = ['undertst'],
include_package_data=True,
scripts=[
'bin/runjava',
],
python_requires='>=3.8',
install_requires=[
'pyyaml>=5.4.1',
'requests>=2.6.1',
'cachecontrol[filecache]'
],
entry_points = {
'console_scripts': [
'tst=tst.commands:main',
]
},
zip_safe=False
)