This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
50 lines (47 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
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
import setuptools
from license_sh.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="license-sh",
version=__version__,
author="Jan Vorcak",
author_email="vorcak@webscope.io",
description="License checker - verify software licenses of your open source software",
scripts=["license-sh"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/webscopeio/license.sh",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
package_data={
"license_sh": [
"runners/yarn/js/package.json",
"runners/yarn/js/yarn.lock",
"runners/yarn/js/parseYarnLock.js",
"runners/maven/maven-dependency-plugin-3.1.1-Licensesh.jar",
"runners/maven/pom.xml",
"data/licenses.json",
"analyze/lib/askalono.linux",
"analyze/lib/askalono.osx",
"analyze/lib/askalono.exe",
]
},
license="MIT",
install_requires=[
"anytree",
"yaspin",
"aiohttp",
"urllib3",
"docopt",
"license-expression",
"pipdeptree",
"questionary",
],
)