setup.py
branchdoc-dc
changeset 105 2703c8a7a968
parent 104 942151432421
equal deleted inserted replaced
104:942151432421 105:2703c8a7a968
    12 # FOR A PARTICULAR PURPOSE.
    12 # FOR A PARTICULAR PURPOSE.
    13 #
    13 #
    14 ##############################################################################
    14 ##############################################################################
    15 
    15 
    16 """
    16 """
    17 This module contains PyAMS ser guide
    17 This module contains PyAMS user guide
    18 """
    18 """
    19 import os
    19 import os
    20 from setuptools import setup, find_packages
    20 from setuptools import setup, find_packages
    21 
    21 
    22 DOCS = os.path.join(os.path.dirname(__file__),
    22 DOCS = os.path.join(os.path.dirname(__file__),
    65           'repoze.lru',
    65           'repoze.lru',
    66           'repoze.sphinx.autointerface',
    66           'repoze.sphinx.autointerface',
    67           'sphinx_rtd_theme',
    67           'sphinx_rtd_theme',
    68           # -*- Extra requirements: -*-
    68           # -*- Extra requirements: -*-
    69       ],
    69       ],
    70       entry_points={})
    70       entry_points={
       
    71         'console_scripts': [
       
    72               'pyams_autodoc = pyams_user_guide.scripts:beautydoc',
       
    73             ],
       
    74           },
       
    75       )