-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (38 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (38 loc) · 1.64 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("version.txt") as version_file:
version_from_file = version_file.read().strip()
with open("requirements.txt") as f_required:
required = f_required.read().splitlines()
# with open("test_requirements.txt") as f_tests:
# required_for_tests = f_tests.read().splitlines()
def get_file_content(file_name):
with open(file_name) as f:
return f.read()
setup(
name="torque_bulk_deployer",
version=version_from_file,
description="Torque bulk deployer - a Quali tool for deploying Environments on Quali Torque in Bulk",
long_description=get_file_content("README.md"),
long_description_content_type="text/markdown",
author="QualiSystems",
author_email="info@qualisystems.com",
url="https://github.com/QualiSystemsLab/Torque-Bulk-Deployer",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
# package_data={"torque_bulk_deployer": ["data/*.yml", "data/*.json"]},
# include_package_data=True,
# test_suite="tests",
entry_points={"console_scripts": ["torque_bulk_deployer = torque_bulk_deployer.bulk_deployer"]},
install_requires=required,
license="Apache Software License 2.0",
zip_safe=False,
keywords="torque_bulk_deployer torque sandbox cloud virtualization vcenter cmp quali command-line cli",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.9.9",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.9",
)