forked from korylprince/PyRTF3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 942 Bytes
/
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
classifiers = """\
Development Status :: 4 - Beta
Topic :: Text Editors :: Text Processing
Topic :: Software Development :: Libraries :: Python Modules
Intended Audience :: Developers
Programming Language :: Python
License :: OSI Approved :: GNU General Public License (GPL)
"""
#import sys
#import os
from setuptools import setup, find_packages
setup(
name='PyRTF3',
author='Mars Galactic',
author_email='[email protected]',
url='https://github.com/xoviat/pyrtf',
license='http://www.gnu.org/licenses/gpl.html',
platforms=['Any'],
install_requires=['PyParsing'],
setup_requires=[
'setuptools_scm',
],
use_scm_version=True,
description='PyRTF - Rich Text Format Document Generation',
classifiers=[_f for _f in classifiers.split('\n') if _f],
keywords=('RTF', 'Rich Text', 'Rich Text Format', 'documentation',
'reports'),
packages=find_packages())