-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (29 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
from setuptools import setup, find_packages
import orcsome
setup(
name = 'orcsome',
version = orcsome.VERSION,
author = 'Anton Bobrov',
author_email = 'baverman+dev@gmail.com',
description = 'Scripting extension for NETWM compliant window managers',
long_description = open('README.rst').read(),
zip_safe = False,
packages = find_packages(exclude=('tests', )),
cffi_modules=["orcsome/ev_build.py:ffi", "orcsome/xlib_build.py:ffi"],
setup_requires=["cffi>=1.0.0"],
install_requires = ['cffi>=1.0.0'],
include_package_data = True,
scripts = ['bin/orcsome'],
url = 'https://github.com/baverman/orcsome',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Topic :: Desktop Environment :: Window Managers",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
],
)