-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (30 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Setup file, used to install and test 'compressed_rtf'
"""
import compressed_rtf
from setuptools import setup
setup(
name='compressed_rtf',
version=compressed_rtf.__version__,
author='Dmitry Alimov',
description='Compressed Rich Text Format (RTF) compression and decompression package',
long_description=compressed_rtf.__doc__.strip(),
license='MIT',
keywords='compressed-rtf lzfu mela rtf',
url='https://github.com/delimitry/compressed_rtf',
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: System :: Archiving :: Compression',
],
)