forked from samkuehn/bitbucket-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.03 KB
/
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
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import find_packages, setup
TEST_REQUIRES = [
'nose',
'unittest2',
]
INSTALL_REQUIRES = [
]
try:
import argparse # noqa
except ImportError:
INSTALL_REQUIRES.append('argparse')
SCRIPTS = ['backup.py', 'bitbucket-backup']
setup(
name='bitbucket-backup',
version='0.2.2',
author='Sam Kuehn',
author_email='[email protected]',
url='https://github.com/samkuehn/bitbucket-backup',
description='Python script to backup Bitbucket repos',
long_description=__doc__,
packages=find_packages(exclude=('tests', 'tests.*',)),
scripts=SCRIPTS,
zip_safe=False,
extras_require={
'tests': TEST_REQUIRES,
},
tests_require=TEST_REQUIRES,
install_requires=INSTALL_REQUIRES,
test_suite='tests',
include_package_data=True,
classifiers=[
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: System :: Systems Administrationt',
'Programming Language :: Python',
],
)