python-tldp/setup.py

36 lines
1.0 KiB
Python
Raw Normal View History

2016-02-11 03:22:23 +00:00
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as r_file:
readme = r_file.read()
setup(
name='tldp',
version='0.2',
license='MIT',
2016-02-11 03:22:23 +00:00
author='Martin A. Brown',
author_email='martin@linux-ip.net',
description='tools for processing all TLDP source documents',
long_description=readme,
packages=find_packages(),
test_suite='tests',
install_requires=['networkx',],
data_files = [('/etc/ldptool', ['etc/ldptool.ini']), ],
entry_points = {
2016-03-01 15:15:17 +00:00
'console_scripts': ['ldptool = tldp.driver:main',],
},
2016-02-11 03:22:23 +00:00
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Libraries :: Python Modules',
2016-02-11 03:22:23 +00:00
],
)