File: setup.py

package info (click to toggle)
doxygen 1.15.0%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 25,384 kB
  • sloc: cpp: 223,248; lex: 45,536; python: 32,394; ansic: 26,761; xml: 16,962; javascript: 8,627; yacc: 582; f90: 455; php: 427; perl: 384; makefile: 201; sh: 24; objc: 14; cs: 5; java: 1
file content (31 lines) | stat: -rw-r--r-- 761 bytes parent folder | download
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
import os

from pathlib import Path
from setuptools import setup, find_packages

topdir = Path(os.getcwd()).parent.parent

with open(topdir / 'VERSION') as f:
    version = f.read()

with open('README.md') as f:
    readme = f.read()

with open('LICENSE') as f:
    license = f.read()

with open('requirements.txt') as f:
    requirements = f.read().splitlines()

setup(
    name='doxmlparser',
    version=version,
    description='Python API to access doxygen generated XML output',
    long_description=readme,
    author='Dimitri van Heesch',
    author_email='doxygen@gmail.com',
    url='https://github.com/doxygen/doxygen/addon/doxmlparser',
    license=license,
    packages=find_packages(exclude=('tests', 'docs')),
    install_requires=requirements
)