-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (33 loc) · 1.05 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
from setuptools import setup, find_packages
import os
VERSION = "0.8.1"
CLASSIFIERS = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Office Suites',
]
setup(
author="Riccardo Magliocchetti",
author_email="[email protected]",
name='pylokit',
version=VERSION,
description='Python CFFI wrapper for LibreOfficeKit',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url="https://github.com/xrmx/pylokit",
license='MPL 2.0',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'cffi',
'six',
],
test_suite='pylokit.tests',
packages=find_packages(),
include_package_data=True,
zip_safe = False,
)