-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 833 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
__author__ = 'ding'
from distutils.core import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ACAutomaton",
description="ACAutomaton python wrapper,support unicode",
author="Yaguang Ding",
author_email="dingyaguang117@gmail.com",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/dingyaguang117/ACAutomaton",
packages=['ACAutomaton'],
ext_modules = [
Extension("_ACAutomaton",
sources=['ACAutomaton/wrapper.cpp', 'ACAutomaton/_ACAutomaton.cpp'],
include_dirs=['./ACAutomaton'],
)
],
classifiers=[
"Programming Language :: Python",
],
keywords='ac-automation ac automation',
python_requires='>=2.6',
version='1.0.3'
)