-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
if __name__ == "__main__":
setup(
name="CVLDoc",
version="2.0.0b7",
author="Certora ltd",
author_email="support@certora.com",
description="Utility for reading CERTORA spec files, parse and export their CVLDoc comments to JSON files.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords="Certora CVLDoc",
url="https://github.com/Certora/cvldocTool",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"cvldoc_parser==2.0.0b1",
"inflection",
"loguru",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
],
python_requires=">=3.8",
entry_points={
"console_scripts": [
"cvldoc=CVLDoc.cvldoc_to_json:main",
],
},
)