-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 754 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 754 Bytes
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
# coding:utf-8
from setuptools import setup
setup(
name="mill-bin",
url='https://github.com/jlsemi',
packages=["mill_bin"],
package_data={
"mill_bin": [
"assets/mill",
],
},
use_scm_version={"relative_to": __file__, "write_to": "mill_bin/version.py",},
author="Leway Colin@JLSemi",
author_email="colinlin@jlsemi.com",
description=(
"Mill Binary is a fat JAR with all of its dependencies."
),
license="Apache-2.0 License",
keywords=[
"mill",
],
entry_points={"console_scripts": ["mill_bin = mill_bin.main:main"]},
setup_requires=["setuptools_scm",],
install_requires=[
],
# Supported Python versions: 3.6+
python_requires=">=3.6",
)