forked from Nuitka/clcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 884 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
setup(
name="clcache",
description="MSVC compiler cache",
author="Frerich Raabe <[email protected]>, Kay Hayen <[email protected]>",
url="https://github.com/Nuitka/clcache",
packages=find_packages(),
platforms="any",
keywords=[],
install_requires=[
'typing; python_version < "3.5"',
'subprocess.run; python_version < "3.5"',
"atomicwrites",
"pymemcache",
"pyuv",
],
entry_points={
"console_scripts": [
"clcache = clcache.__main__:main",
"cl.cache = clcache.__main__:main",
"clcache-server = clcache.server.__main__:main",
]
},
setup_requires=[
"setuptools_scm",
],
data_files=[
("", ("clcache.pth",)),
],
use_scm_version=True,
)