-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
42 lines (38 loc) · 1.19 KB
/
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
38
39
40
41
42
"""The cl4py setup.
See:
https://github.com/marcoheisig/cl4py
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='cl4py',
version='1.8.1',
description='Common Lisp for Python',
long_description=readme(),
long_description_content_type='text/x-rst',
license='MIT',
url='https://github.com/marcoheisig/cl4py',
author='Marco Heisig',
author_email='[email protected]',
install_requires=['numpy'],
extras_require={},
keywords='foreign functions FFI',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Lisp' ,
],
packages=find_packages(exclude=['contrib', 'docs', 'test']),
include_package_data = True,
package_data={'': ['*.lisp']},
)