-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 loc) · 1.45 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
# N.B. consult https://github.com/pypa/sampleproject
from setuptools import setup, find_packages
from os import path
setup(
name = "briareus",
version = "0.3",
description = 'Build configuration generator',
# long_description = ...,
# long_description_content_type = 'text/markdown',
# url = ...,
author = "Kevin Quick",
author_email = "kq1quick@gmail.com",
classifiers = [
'Development status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
# 'License :: OSI Approved :: ? License',
'Programming Language :: Python :: 3',
],
keywords='ci build development',
packages = find_packages(), # ["src/Briareus"],
package_data={ '': ['*.pl', # Include Prolog scripts in packages
'Actions/*.txt', # Include Action contents
'Actions/*.tag', # Include Action taglines
],
},
data_files=[('hydra', ['hydra/sysconfig.nix', 'hydra/copy_hh.nix']),
('html', [ 'html/status_hdr.html',
'html/status_footer.html',
]),
],
python_requires = '>=3.3',
# install_requires=[], # for pip
entry_points={ 'console_scripts': [ 'hh=Briareus.hh:main',
'hh_status=Briareus.hh_status:main'], },
# project_urls={ 'Bug Reports': ?, 'Source': ? },
)