forked from rshk/python-libxdo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (40 loc) · 1.55 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
import os
from setuptools import find_packages, setup
version = '0.1.2a1'
install_requires = ['six']
here = os.path.dirname(__file__)
with open(os.path.join(here, 'README.rst')) as fp:
longdesc = fp.read()
with open(os.path.join(here, 'CHANGELOG.rst')) as fp:
longdesc += "\n\n" + fp.read()
setup(
name='python-libxdo',
version=version,
packages=find_packages(),
url='https://github.com/rshk/python-libxdo',
# 3-clause BSD, same as xdotool
license='BSD License',
author='Samuele Santi',
author_email='samuele@samuelesanti.com',
description='Python bindings for libxdo',
long_description='',
install_requires=install_requires,
# test_suite='tests',
classifiers=[
"License :: OSI Approved :: BSD License", # 3-clause
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
# "Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
# Only CPython is supported at the moment
"Programming Language :: Python :: Implementation :: CPython",
# "Programming Language :: Python :: Implementation :: PyPy",
],
package_data={'': ['README.rst', 'LICENSE', 'CHANGELOG.rst']})