forked from frerich/clcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 828 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
setup(
name='clcache',
description='MSVC compiler cache',
author='Frerich Raabe',
author_email='[email protected]',
url='https://github.com/frerich/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',
'clcache-server = clcache.server.__main__:main',
]
},
setup_requires=[
'setuptools_scm',
],
data_files=[
('', ('clcache.pth',)),
],
use_scm_version=True)