-
Notifications
You must be signed in to change notification settings - Fork 95
/
setup.py
36 lines (32 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
#!/usr/bin/env python
from setuptools import find_packages, setup
TEST_REQUIRES = ["nose", "unittest2"]
INSTALL_REQUIRES = ["requests", "requests-oauthlib"]
try:
import argparse # noqa
except ImportError:
INSTALL_REQUIRES.append("argparse")
SCRIPTS = ["backup.py", "bitbucket-backup"]
setup(
name="bitbucket-backup",
version="0.0.1",
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",
],
)