-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.28 KB
/
setup.py
File metadata and controls
43 lines (37 loc) · 1.28 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
#!python
"""setup file, used to install the orapydoc package.
This package consists of tools to generate documentation of
oracle schemas
Scripts::
orapydoc
"""
from setuptools import setup, find_packages
import sys
VERSION = open('version.txt').read().strip()
scripts = []
setup(name='orapydoc',
version=VERSION,
description='utility to generate rst documentation of oracle schemas',
author='Andrew Sawyers',
author_email='sawdog881@gmail.com',
license='BSD',
long_description = open('README.md').read(),
keywords = 'utilities oracle documentation reST structured text',
url = 'https://github.com/sawdog/OraclePyDoc/',
packages = find_packages(),
py_modules = [],
zip_safe = False,
entry_points = {'console_scripts': [
'orapydoc = runner:main',]},
classifiers = [f.strip() for f in """
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
Topic :: System :: System Administration
Topic :: Utilities""".splitlines() if f.strip()],
scripts = scripts,
install_requires = [],
)