forked from Dyalog/pynapl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 949 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
from setuptools import setup
setup(
name="pynapl-dyalog",
version='0.1.0post2',
description='Python - Dyalog APL interface',
long_description="This package allows communication between Python and Dyalog APL.",
url='https://github.com/fastai/pynapl',
author='Dyalog',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: APL',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
keywords='apl dyalog-apl interface',
packages=['pynapl'],
package_data={
'pynapl': [ 'Py.dyalog', 'PyTest.dyalog', 'WinPySlave.dyalog', 'IPC.dyalog', 'WinPySlave.dyapp' ]
},
)