This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
74 lines (67 loc) · 2.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import os
import setuptools
import numpy
from setuptools import find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
CLASSIFIERS = """\
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: C
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Topic :: Scientific/Engineering :: Artificial Intelligence
Operating System :: POSIX :: Linux
"""
serlib_cparser = setuptools.Extension('serlib.cparser',
sources=['serlib/cparser.cpp'],
include_dirs=[numpy.get_include()],
extra_compile_args = ["-std=c++14"],
)
setuptools.setup(
name='pycoq',
version='0.0.1a1dev3',
author='Vasily Pestun, Fidel I. Schaposnik Massolo',
author_email='pestun@ihes.fr',
packages=['pycoq', 'serlib', 'pycoq.test'],
ext_modules=[serlib_cparser],
license='MIT License',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/IBM/pycoq',
python_requires='>=3.8',
include_package_data=True,
package_data={'pycoq': ['test/*',
'test/autoagent/*',
'test/lf/*',
'test/coq-bignums/*',
'test/query_goals/*',
'test/serlib/*',
'test/trace/*']},
install_requires=['lark-parser',
'pylint',
'pathos',
'ipython',
'ipykernel',
'rope',
'pathos',
'tqdm',
'aiofile',
'pytest',
'strace-parser',
'pytest-benchmark',
'dataclasses-json',
'numpy'],
entry_points={'console_scripts': ['pycoq-trace=pycoq.pycoq_trace:main']},
project_urls={
'Source': 'https://github.com/pestun/pycoq'
},
platforms = ["Linux"],
classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],
)