-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
51 lines (48 loc) · 1.59 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
45
46
47
48
49
50
51
#!/usr/bin/python3
# -*- coding: utf-8 -*-
# This file is part of ModulemdTranslationHelpers
# Copyright (C) 2018-2019 Stephen Gallagher
#
# Fedora-License-Identifier: MIT
# SPDX-2.0-License-Identifier: MIT
# SPDX-3.0-License-Identifier: MIT
#
# This program is free software.
# For more information on the license, see COPYING.
# For more information on free software, see
# <https://www.gnu.org/philosophy/free-sw.en.html>.
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='ModulemdTranslationHelpers',
version='1.0',
packages=['ModulemdTranslationHelpers'],
url='https://github.com/fedora-modularity/ModulemdTranslationHelpers',
license='MIT',
author='Stephen Gallagher',
author_email='[email protected]',
description='Tools for working with translations of modulemd',
long_description=long_description,
long_description_content_type='text/markdown',
# ModulemdTranslationHelpers also requires libmodulemd which is
# not available on PyPI and must be installed separately. On Fedora,
# this is done with `dnf install libmodulemd`
install_requires=[
'click',
'requests',
'babel',
],
entry_points={
'console_scripts': [
'ModulemdTranslationHelpers=ModulemdTranslationHelpers.cli:cli'],
},
test_suite='nose.collector',
tests_require=['nose'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
],
include_package_data=True,
)