-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
executable file
·33 lines (32 loc) · 1.03 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
#!/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 = 'lilydjwg@gmail.com',
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',
'fluent.runtime',
],
include_package_data = True,
package_data = {
'lilac2': ['aliases.yaml', 'l10n/*/*.ftl'],
},
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)