-
Notifications
You must be signed in to change notification settings - Fork 73
/
setup.py
35 lines (31 loc) · 1.04 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import re
import os
with open("autoit/__init__.py", 'r') as f:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
f.read(), re.MULTILINE).group(1)
setup(
name='PyAutoIt',
version=version,
packages=['autoit'],
package_data={'autoit': ['lib/*.dll']},
url='https://github.com/jacexh/pyautoit',
license='MIT',
author='Jace Xu',
author_email='jace.xh@gmail.com',
description='Python binding for AutoItX3.dll',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Topic :: Software Development :: Testing"
],
long_description=open(
os.path.join(os.path.dirname(__file__), "README.rst"), 'r').read())