-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.27 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
40
41
42
43
"""Setup file for multipackage."""
from setuptools import setup, find_packages
from version import version
setup(
name="multipackage",
packages=find_packages(exclude=("test",)),
version=version,
license="LGPLv3",
install_requires=[
"pycryptodome",
"requests",
"pyyaml"
],
include_package_data=True,
entry_points={
"console_scripts": ['multipackage = multipackage.scripts.multipackage:main']
},
description="A CLI tool for managing CI and CD scripts on multi-package repositories",
author="Arch Systems",
author_email="info@archsys.io",
python_requires=">=3.5, <4",
url="https://github.com/iotile/multipackage",
keywords=[""],
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Multipackage
------------
<TODO>
"""
)