-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.1 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='scriptax-runtime',
packages=find_packages(),
version='0.2.1',
description='Scriptax is a powerful driver for the Apitax framework which exposes an automation first language used to quickly script together automation.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Shawn Clake',
author_email='[email protected]',
url='https://github.com/Apitax/Scriptax-Runtime',
keywords=['scriptax'],
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
),
install_requires=[
'scriptax==4.0.1',
'apitaxcore==3.0.9',
'click',
'pytest'
],
entry_points={
'console_scripts': [
'scriptax=scriptax_runtime.scriptax.cli:scriptax', # command=package.module:function
'spm=scriptax_runtime.scriptax.spm:spm', # command=package.module:function
],
},
)