-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 675 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
from gerrit_python_tools.meta import version, license
description = "Various tools in python for interacting with gerrit."
data_files = [
('/etc/gerrit-python-tools', ['sample-config.yaml', 'sample-logging.yaml'])
]
with open('README.md', 'r') as f:
readme = f.read()
setup(
name="gerrit_python_tools",
version=version,
description=description,
long_description=readme,
author="James Absalon",
author_email="james.absalon@rackspace.com",
license=license,
packages=find_packages(),
zip_safe=True,
data_files=data_files,
scripts=['bin/gerrit-sync', 'bin/gerrit-python-tools']
)