-
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) · 788 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 788 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-cache",
url='https://github.com/jlsemi',
packages=["mill_cache"],
package_data={
"mill_cache": [
"assets/cache.tar.gz",
],
},
use_scm_version={"relative_to": __file__, "write_to": "mill_cache/version.py",},
author="Leway Colin@JLSemi",
author_email="colinlin@jlsemi.com",
description=(
"Mill Cache is a tarball with all of mill's dependencies."
),
license="Apache-2.0 License",
keywords=[
"mill cache files",
],
entry_points={"console_scripts": ["mill_cache = mill_cache.main:main"]},
setup_requires=["setuptools_scm",],
install_requires=[
],
# Supported Python versions: 3.6+
python_requires=">=3.6",
)