-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 747 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 747 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
from distutils.core import setup
from clr_ext.build import PythonNetExtension, PythonNetBuild
setup(
name='Unison',
version='',
packages=[''],
url='',
license='MIT',
author='sho7noka',
author_email='',
description='',
data_files=[],
install_requires=[
# "pythonnet>=2.4.0",
],
ext_package=[],
py_modules=['clr_ext'],
ext_modules=[PythonNetExtension('PythonPassing', ["src/PythonPassing.cs"])],
cmdclass={'build_ext': PythonNetBuild},
classifiers=['Development Status :: 4 - Beta',
"Operating System :: OS Independent",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
],
)