aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..3ec3131
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,24 @@
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3"""
4 Setup file for youtube_podcaster.
5
6 This file was generated with PyScaffold 2.4.2, a tool that easily
7 puts up a scaffold for your new Python project. Learn more under:
8 http://pyscaffold.readthedocs.org/
9"""
10
11import sys
12from setuptools import setup
13
14
15def setup_package():
16 needs_sphinx = {'build_sphinx', 'upload_docs'}.intersection(sys.argv)
17 sphinx = ['sphinx'] if needs_sphinx else []
18 setup(setup_requires=['six', 'pyscaffold>=2.4rc1,<2.5a0'] + sphinx,
19 tests_require=['pytest_cov', 'pytest'],
20 use_pyscaffold=True)
21
22
23if __name__ == "__main__":
24 setup_package()