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',
2016-03-02 07:01:36 +00:00
version='0.4.5',
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=[
2016-03-01 17:15:09 +00:00
'Development Status :: 4 - Beta',
2016-02-11 03:22:23 +00:00
'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
],
)