faq: update
[rarfile.git] / setup.py
blob7d18d44eb042e1ab64e4c9cdef11cda8e2201015
1 #! /usr/bin/env python
3 from distutils.core import setup
5 import rarfile
7 ver = rarfile.__version__
8 ldesc = open("README").read().strip()
9 sdesc = ldesc.split('\n')[0].split(' - ')[1].strip()
11 setup(
12 name = "rarfile",
13 version = ver,
14 description = sdesc,
15 long_description = ldesc,
16 author = "Marko Kreen",
17 license = "ISC",
18 author_email = "markokr@gmail.com",
19 url = "https://github.com/markokr/rarfile",
20 py_modules = ['rarfile'],
21 keywords = ['rar', 'unrar', 'archive'],
22 classifiers = [
23 "Development Status :: 5 - Production/Stable",
24 "Intended Audience :: Developers",
25 "License :: OSI Approved :: ISC License (ISCL)",
26 "Operating System :: OS Independent",
27 "Programming Language :: Python :: 2",
28 "Programming Language :: Python :: 3",
29 "Topic :: Software Development :: Libraries :: Python Modules",
30 "Topic :: System :: Archiving :: Compression",