File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -14,12 +14,21 @@ def get_requires(requires_filename: str) -> List[str]:
1414
1515setup (
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)
You can’t perform that action at this time.
0 commit comments