Skip to content

Commit f3bfe13

Browse files
Merge pull request #3 from asappresearch/release_mods
fix setup py
2 parents 213228b + eb0d8e3 commit f3bfe13

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,21 @@ def get_requires(requires_filename: str) -> List[str]:
1414

1515
setup(
1616
name="josh_train",
17-
description="josh_train",
17+
description="A simulation training framework",
18+
long_description=open("README.md", "r").read(),
19+
long_description_content_type="text/markdown",
1820
author="blattimer",
21+
author_email="blattimer@asapp.com",
22+
url="https://github.com/josh-llm-simulation-training",
1923
packages=PEP420PackageFinder.find(exclude=("test*",)),
2024
python_requires=">=3.8",
2125
install_requires=get_requires("requirements.txt"),
2226
include_package_data=True,
2327
setup_requires=["setuptools_scm"],
2428
use_scm_version=True,
29+
classifiers=[
30+
"Programming Language :: Python :: 3",
31+
"License :: OSI Approved :: MIT License",
32+
"Operating System :: OS Independent",
33+
],
2534
)

0 commit comments

Comments
 (0)