[go: up one dir, main page]

File: setup.py

package info (click to toggle)
freedict-tools 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 832 kB
  • sloc: python: 2,789; perl: 1,509; sh: 160; makefile: 135; xml: 10
file content (18 lines) | stat: -rw-r--r-- 569 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup

setup(name='fd_tool',
      version='0.2.0',
      description='The FreeDict tool for file management and more',
      author='The FreeDict Developers',
      author_email='freedict@freelists.org',
      url='https://github.com/freedict/tools',
      license='GPL3',
      py_modules=['fd_tool'],
      install_requires=[],
      entry_points={'console_scripts':
          ['fd_api=fd_api:main',
           'fd_file_mgr=fd_file_mgr:main',
           'fd_changelog=fd_changelog:main',
           'rm_duplicates=rm_duplicates:main']
    }
)