This repository was archived by the owner on Aug 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
45 lines (40 loc) · 1.69 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
#!/usr/bin/env python
# Copyright (c) 2019 WayScript, Inc. All rights reserved.
# Licensed under the MIT License.
import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name="wayscript-legacy",
version='0.0.0',
author="Team WayScript",
author_email="[email protected]",
description="WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['requests>=2.22.0'],
url="https://github.com/wayscript/wayscript-python-legacy",
packages=['wayscript'],
license='MIT',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Office/Business",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
],
keywords=[ 'wayscript', 'productivity', 'software', 'superpowers', 'scripts', 'cloud', 'tools', 'backend',
'visual', 'low-code', 'modules', 'trigger', 'integration', 'dev', 'http', 'webhook' ],
zip_safe=False,
)