File: setup.py

package info (click to toggle)
shatag 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 224 kB
  • sloc: python: 556; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(name='shatag',
      version = '0.4.1',
      description = 'File checksumming utility',
      author = 'Maxime Augier',
      author_email = 'max@xolus.net',
      url = 'http://bitbucket.org/maugier/shatag',
      packages = ['shatag','shatag.backend','shatag.store'],
      install_requires=['pyyaml','xattr'],
      entry_points={
          'console_scripts': [
              'shatag = shatag.cli.shatag:main',
              'shatag-add = shatag.cli.add:main',
              'shatagd = shatag.cli.shatagd:main'
          ]
      }
)