-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (32 loc) · 1.24 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open('README.rst', 'r') as f:
long_description = f.read()
with open('requirements-no-hashes.txt', 'r') as f:
install_requires = [
line.strip() for line in f if not line.lstrip().startswith('#')
]
setup(
name='message-tagging-service',
version='0.8.1',
description='Tag Koji build with correct tag which is triggered by message bus',
long_description=long_description,
maintainer='Factory 2 Team',
# Not sure which email address is proper here, so just using a fake email
# address. But, probably this could be a real some day, or another one.
maintainer_email='[email protected]',
license='GPLv2+',
url='https://github.com/fedora-modularity/message-tagging-service',
keywords='messaging,module,tag,koji',
packages=find_packages(),
install_requires=install_requires,
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
data_files=[
('/etc/mts/', ['conf/config.py']),
],
)