forked from russell/bb-pytest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 1011 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
33
34
35
36
37
from setuptools import setup, find_packages
from os import path
version = '0.2'
changelog_header = """
Changelog
=========
"""
desc_file = path.join(path.dirname(__file__), "README.rst")
changelog_file = path.join(path.dirname(__file__), "CHANGELOG.rst")
description = open(desc_file).read() + changelog_header + open(changelog_file).read()
setup(name='bb-pytest',
version=version,
description="Buildbot step for py.test.",
long_description=description,
classifiers=[], # Get strings from
#http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Russell Sim',
author_email='[email protected]',
url='https://github.com/russell/bb-pytest',
license='GPL',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
],
entry_points="""
# -*- Entry points: -*-
""",
)