-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 717 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 717 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
import glob
import os
import sys
from setuptools import setup
from distutils.sysconfig import get_python_lib
if os.path.exists('README.md'):
print("""The setup.py script should be executed from the build directory.
Please see the file 'README.md' for further instructions.""")
sys.exit(1)
setup(
name = "libasynctasks",
package_dir = {
'': 'src'
},
data_files = [
(get_python_lib(), glob.glob('src/*.so')),
],
author = 'Caleb Marshall',
description = 'A fast, efficient task based system for concurrency.',
license = 'BSD 3-Clause',
keywords = 'cmake cython build',
url = 'https://github.com/AnythingTechPro/libasynctasks',
zip_safe = False
)