forked from fkfouri/sapy_script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sapy_script",
version="1.0.1",
author="fkfouri, mariotaddeucci",
author_email="[email protected]",
description="Library to manipulate SAP by script",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fkfouri/sapy_script",
packages=setuptools.find_packages(),
classifiers=(
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Other Scripting Engines",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Intended Audience :: Developers"
),
keywords="SAP Script",
install_requires=['pywin32==223', 'tqdm==4.20.0', 'wmi==1.4.9']
)