New upstream version 0.0.15
This commit is contained in:
parent
3e1f11dd79
commit
c286789e37
55 changed files with 3578 additions and 1371 deletions
41
setup.py
41
setup.py
|
@ -1,40 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
# encoding: utf-8
|
||||
|
||||
#!/usr/bin/python3
|
||||
from setuptools import setup
|
||||
|
||||
|
||||
setup(name="ognibuild",
|
||||
description="Detect and run any build system",
|
||||
version="0.0.7",
|
||||
maintainer="Jelmer Vernooij",
|
||||
maintainer_email="jelmer@jelmer.uk",
|
||||
license="GNU GPLv2 or later",
|
||||
url="https://jelmer.uk/code/ognibuild",
|
||||
packages=['ognibuild', 'ognibuild.tests', 'ognibuild.debian', 'ognibuild.resolver', 'ognibuild.session'],
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'License :: OSI Approved :: '
|
||||
'GNU General Public License v2 or later (GPLv2+)',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Operating System :: POSIX',
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": [
|
||||
"ogni=ognibuild.__main__:main",
|
||||
"deb-fix-build=ognibuild.debian.fix_build:main",
|
||||
]
|
||||
},
|
||||
install_requires=[
|
||||
'breezy',
|
||||
'buildlog-consultant>=0.0.10',
|
||||
'requirements-parser',
|
||||
],
|
||||
extras_require={
|
||||
'debian': ['debmutate', 'python_debian', 'python_apt'],
|
||||
},
|
||||
tests_require=['python_debian', 'buildlog-consultant', 'breezy', 'testtools'],
|
||||
test_suite='ognibuild.tests.test_suite',
|
||||
)
|
||||
setup()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue