forked from jedbrown/git-fat
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
32 lines (26 loc) · 817 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
from setuptools.command.test import test as TestCommand # noqa
import sys
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import tox
errno = tox.cmdline(self.test_args)
sys.exit(errno)
from git_fat import __version__
setup(
description="Manage large binary files with git",
license='BSD 2-Clause',
long_description=open('README.rst').read(),
maintainer='Alan Braithwaite',
maintainer_email='[email protected]',
name='git-fat',
packages=['git_fat'],
scripts=['bin/git-fat'],
url='https://github.com/cyaninc/git-fat',
version=__version__,
cmdclass={"test": Tox},
)