-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (35 loc) · 1.18 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
from setuptools import setup
import os
import sys
classifiers = [
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
with open("README.rst", "r") as fp:
long_description = fp.read()
setup(name="galaxycollection_to_rpm",
version='0.0.1',
author="Javier Peña",
author_email="[email protected]",
url="https://github.com/javierpena/galaxy-collection-to-rpm",
description="Create RPM spec for an Ansible Galaxy collection",
long_description=long_description,
license="Apache 2.0",
classifiers=classifiers,
packages=['galaxycollection_to_rpm'],
package_data={
"": ["data/*.j2"],
},
entry_points={
"console_scripts": [
"galaxy-collection-to-rpm = galaxycollection_to_rpm.galaxycollection_to_rpm:main",
]
}
)