-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·51 lines (50 loc) · 1.62 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name="rossum",
version="3.19.0",
description="Command line interface for controlling the Rossum platform",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://developers.rossum.ai/",
author="Rossum developers",
author_email="[email protected]",
license="MIT",
project_urls={
"Source": "https://github.com/rossumai/rossum",
"Tracker": "https://github.com/rossumai/rossum/issues",
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(exclude=("tests*",)),
install_requires=[
"pandas",
"click>=8.0.0",
"click-shell",
"xlrd > 1.2.0",
"requests",
"jsondiff",
"tabulate",
"openpyxl==3.0.10",
"jmespath",
"polling2",
"more_itertools",
"tenacity",
],
python_requires=">=3.7",
setup_requires=["pytest-runner"],
zip_safe=False,
entry_points={"console_scripts": ["rossum = rossum.main:entry_point"]},
)