-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
46 lines (42 loc) · 1.33 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
import os
from setuptools import setup, find_packages
def get_version():
THIS_DIR = os.path.dirname(os.path.realpath(__file__))
main_ns = {}
with open(os.path.join(THIS_DIR, "ccb/_version.py")) as ver_file:
exec(ver_file.read(), main_ns)
return main_ns["__version__"]
setup(
name="conan-center-bot",
version=get_version(),
license="GPLv3",
packages=find_packages(),
entry_points={
"console_scripts": [
"conan-center-bot=ccb.__main__:main",
],
},
include_package_data=True,
install_requires=[
"terminaltables<4",
"ruamel.yaml<0.17",
"aiohttp<4",
"colored<2",
"conan<2",
],
author="Quentin Chateau",
author_email="[email protected]",
description="A bot to automatically update conan-center-index",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/qchateau/conan-center-bot",
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"Programming Language :: C++",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)