-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
37 lines (33 loc) · 1.09 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
from setuptools import setup
from typing import Dict, Any
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
SETUP_ARGS: Dict[str, Any] = dict(
name='moulin', # Required
version='0.27', # Required
description='Meta-build system', # Required
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/xen-troops/moulin', # Optional
author='Volodymyr Babchuk', # Optional
author_email='[email protected]', # Optional
# Note that this is a string of words separated by whitespace, not a list.
keywords='build ninja yocto android repo git',
packages=[
"moulin",
"moulin.fetchers",
"moulin.builders",
"moulin.rouge",
], # Required
install_requires=[
'pygit2',
'importlib_metadata',
'packaging',
'pyaml',
'gpt-image',
],
python_requires=">=3.6",
entry_points={
'console_scripts': ['moulin = moulin.main:moulin_entry', 'rouge = moulin.main:rouge_entry']
})
setup(**SETUP_ARGS)