forked from spyoungtech/ahk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.09 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
from setuptools import setup
from io import open
test_requirements = ['behave', 'behave-classy', 'pytest']
extras = {'test': test_requirements}
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='ahk',
version='0.6.1',
url='https://github.com/spyoungtech/ahk',
description='A Python wrapper for AHK',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='[email protected]',
author='Spencer Young',
packages=['ahk'],
install_requires=['jinja2'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Desktop Environment',
'Programming Language :: Python',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
tests_require=test_requirements,
include_package_data=True,
zip_safe=False
)