-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (23 loc) · 839 Bytes
/
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
import setuptools
libpath = r"autogui\src\GUILibrary\bin\Release"
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="autogui",
version="0.1.8",
author="Alex Lundberg,Richard Boettcher",
author_email="[email protected],[email protected]",
description="Records and automates Winform and WPF applications",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lundbird/AutoGui",
packages=['autogui'],
package_data={'autogui':['src/GUILibrary/bin/Release/*.dll']},
classifiers=(
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
),
install_requires=['pythonnet'],
license='MIT',
)