-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (28 loc) · 995 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
30
31
32
# -*- coding: utf-8 -*-
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text(encoding="utf-8")
with open("requirements.txt", "r") as fin:
REQUIRED_PACKAGES = fin.read()
setup(
name="llm2json",
version=open((HERE / "llm2json" / "version.txt"), "r").read().strip(),
description="Web Based Multi Purpose Annotation Software",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/JiehangXie/llm2json",
author="Jiehang Xie",
author_email="[email protected]",
license="MIT License",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English"
],
packages=find_packages(),
include_package_data=True,
install_requires=REQUIRED_PACKAGES,
python_requires='>=3.7',
)