-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (28 loc) · 1.13 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
from setuptools import find_namespace_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(name='leaven',
version='1.1.0b32',
license='MIT',
description='A package bridging Python and Lean verification for proof search using language models',
long_description=long_description,
author='Huajian Xin',
author_email='[email protected]',
url='https://github.com/xinhjBrant/leaven',
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz',
install_requires=[
"networkx", "pathlib", "datetime", "pytz", "tqdm"
],
packages=find_namespace_packages(exclude=['leaven.__pycache__', 'leaven.src.__pycache__']),
include_package_data=True,
platforms=["all"],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries'
],
long_description_content_type="text/markdown",
python_requires='>=3.9',
)