-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (42 loc) · 1.73 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
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages
from setuptools import setup
from createllm import __version__
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
with open("requirements.txt", "r") as file:
requirements = [r for r in file.readlines() if len(r) > 0]
setup_requirements = []
test_requirements = ["pytest"].extend(requirements)
setup(
author="Khushal Jethava",
author_email="[email protected]",
python_requires=">=3.5",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop ",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"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",
],
description="A Python package that enables users to create and train their own Language Learning Models (LLMs) from scratch using custom datasets. This package provides a simplified approach to building, training, and deploying custom language models tailored to specific domains or use cases.",
include_package_data=True,
install_requires=requirements,
keywords="createllm",
license="MIT license",
long_description=readme,
long_description_content_type="text/markdown",
name="createllm",
setup_requires=setup_requirements,
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/khushaljethava/createllm",
version=__version__,
zip_safe=False,
)