-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 770 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 770 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='odfcleaner',
version='0.1',
author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot',
url='https://github.com/CIRCL/ODFCleaner',
description='Python module to cleanup ODF files.',
packages=['odfcleaner'],
scripts=['bin/odfcleaner'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Security'
],
tests_requires=['nose'],
test_suite='nose.collector',
install_requires=['lxml'],
package_data={'odfcleaner': ['data/*.xsl']}
)