-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (32 loc) · 1001 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
37
from setuptools import setup
requirements = [
'clang',
'PyYAML'
]
classifiers = [
'Intended Audience :: Developers',
'Topic :: Software Development',
'Programming Language :: Python :: 3',
]
with open('README.md') as f:
readme = f.read()
proj_license = 'MIT'
setup(name="cl_bindgen",
version='1.4.3',
description='A command line tool and library for creating Common Lisp language bindings from C header files',
long_description_content_type='text/markdown',
long_description=readme,
license=proj_license,
author="Stuart Dilts",
author_email='stuart.dilts@gmail.com',
url='https://github.com/sdilts/cl-bindgen',
download_url='https://github.com/sdilts/cl-bindgen/archive/1.1.3.tar.gz',
packages=['cl_bindgen'],
entry_points={
'console_scripts': [
'cl-bindgen = cl_bindgen.__main__:main'
]
},
install_requires=requirements,
classifiers=classifiers
)