File: setup.py

package info (click to toggle)
doxypy 0.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 64 kB
  • ctags: 39
  • sloc: python: 260; makefile: 6
file content (29 lines) | stat: -rwxr-xr-x 683 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

import sys
import os

from glob import glob
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES 

import doxypy

setup(
	name=doxypy.__applicationName__,
	version=doxypy.__version__,
	author='Philippe Neumann & Gina Haeussge',
	author_email='doxypy@demod.org',
	url=doxypy.__website__,
	description=doxypy.__blurb__,
	license=doxypy.__licenseName__,
	
	classifiers=[
		"Programming Language :: Python",
		"Intended Audience :: Developers",
		"License :: OSI Approved :: GNU General Public License (GPL)",
		"Operating System :: OS Independent",
		"Topic :: Software Development :: Documentation"
	],
	scripts=['doxypy.py']
)