forked from afri-bit/conan-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (30 loc) · 1.13 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, find_packages
def get_requirements(filename):
requirements = []
with open(filename, "rt") as req_file:
for line in req_file.read().splitlines():
if not line.strip().startswith("#"):
requirements.append(line)
return requirements
project_requirements = get_requirements("requirements.txt")
setup(
name="conan-guide",
version="1.0.0",
url="https://github.com/afri-bit/conan-guide",
license="MIT",
author="Afrizal Herlambnag",
author_email="[email protected]",
description="Qt based Graphical User Interface (GUI) to interact with conan package manager",
packages=find_packages(),
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For the detail information please refer to
# https://packaging.python.org/en/latest/requirements.html
install_requires=project_requirements,
# Project relation
keywords=["conan", "conan.io", "GUI", "Conan GUI", "PyQt5"],
entry_points={
"console_scripts": [
"conan-guide=conanguide.app:main"
]
}
)