-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (46 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (46 loc) · 1.57 KB
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
"""
Setup script for STTF package.
"""
from setuptools import setup, find_packages
from pathlib import Path
# Read README
readme = Path(__file__).parent / "README.md"
long_description = readme.read_text() if readme.exists() else ""
setup(
name="sttf",
version="1.0.0",
author="STTF Contributors",
description="SAT Transformation Trace Format - A universal standard for recording SAT CNF transformations",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/sttf",
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.6",
install_requires=[],
extras_require={
"dev": ["pytest", "black", "mypy"],
},
entry_points={
"console_scripts": [
"sttf-validate=sttf_validate:main",
"sttf-generate=sttf_generate:main",
],
},
include_package_data=True,
zip_safe=False,
)