File: setup.py

package info (click to toggle)
fvs 0.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 252 kB
  • sloc: python: 840; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 532 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup

setup(
    name='FVS',
    version='0.3.4',
    packages=['fvs'],
    url='https://github.com/mirkobrombin/FVS',
    license='MIT',
    author='Mirko Brombin',
    author_email='send@mirko.pm',
    description='File Versioning System with hash comparison, deduplication and data storage to create unlinked '
                'states that can be deleted ',
    entry_points={
        'console_scripts': [
            'fvs=fvs.cli:fvs_cli'
        ]
    },
    install_requires=[
        'orjson'
    ]
)