forked from archlinuxcn/lilac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·32 lines (31 loc) · 1021 Bytes
/
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
#!/usr/bin/env python3
from setuptools import find_packages, setup
setup(
name = 'archlinuxcn-lilac',
use_scm_version = True,
description = 'The build bot for archlinuxcn',
author = 'lilydjwg',
author_email = '[email protected]',
python_requires = '>=3.10.0',
url = 'https://github.com/archlinuxcn/lilac',
zip_safe = False,
packages = find_packages(exclude=('tests',)) + ['nvchecker_source'],
py_modules = ['lilaclib'],
scripts = ['lilac', 'recv_gpg_keys', 'scripts/build-cleaner', 'scripts/lilac-cleaner'],
setup_requires = ['setuptools_scm'],
# See README.md
install_requires = [
'requests', 'lxml', 'PyYAML', 'pyalpm', 'structlog', 'python_prctl',
],
include_package_data = True,
package_data = {
'lilac2': ['aliases.yaml'],
},
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)