1 """Setup script for rarfile.
6 from setuptools
import setup
8 vrx
= r
"""^__version__ *= *['"]([^'"]+)['"]"""
9 src
= open("rarfile.py").read()
10 ver
= re
.search(vrx
, src
, re
.M
).group(1)
12 ldesc
= open("README.rst").read().strip()
13 sdesc
= ldesc
.split('\n')[0].split(' - ')[1].strip()
19 long_description
=ldesc
,
22 author_email
="markokr@gmail.com",
23 url
="https://github.com/markokr/rarfile",
24 py_modules
=['rarfile'],
25 keywords
=['rar', 'unrar', 'archive'],
26 python_requires
=">=3.6",
28 "Development Status :: 5 - Production/Stable",
29 "Intended Audience :: Developers",
30 "License :: OSI Approved :: ISC License (ISCL)",
31 "Operating System :: OS Independent",
32 "Programming Language :: Python :: 3",
33 "Topic :: Software Development :: Libraries :: Python Modules",
34 "Topic :: System :: Archiving :: Compression",