File: setup.py

package info (click to toggle)
pychm 0.8.6%2Bds-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: ansic: 680; python: 545; makefile: 5
file content (18 lines) | stat: -rw-r--r-- 669 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, Extension

with open("README", "r") as fh:
    long_description = fh.read()

setup(name="pychm",
      version="0.8.6",
      description="Python package to handle CHM files",
      author="Rubens Ramos",
      author_email="rubensr@users.sourceforge.net",
      maintainer="Mikhail Gusarov",
      maintainer_email="dottedmag@dottedmag.net",
      url="https://github.com/dottedmag/pychm",
      license="GPL",
      long_description=long_description,
      py_modules=["chm.chm", "chm.chmlib", "chm.extra"],
      ext_modules=[Extension("chm._chmlib", ["chm/_chmlib.c", "chm/search.c"],
                             libraries=["chm"])])