-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
44 lines (40 loc) · 1.05 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
43
44
from setuptools import setup, find_packages
import sys, os
from boss.utils.version import get_version
LONG = """
Boss is a development utility that provides quick access to reusable project
templates for any language.
"""
VERSION = get_version()
setup(name='boss',
version=VERSION,
description="Baseline Open Source Software Templates",
long_description=LONG,
classifiers=[],
keywords='',
author='BJ Dierkes',
author_email='derks@datafolklabs.com',
url='https://boss.readthedocs.io',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
install_requires=[
### Required to build documentation
# 'sphinx',
#
### Required for testing
# 'nose',
# 'coverage',
#
### Required to function
'cement',
],
setup_requires=[],
entry_points="""
[console_scripts]
boss = boss.cli.main:main
""",
namespace_packages=[],
)