Skip to content

Commit

Permalink
Set distutils properties
Browse files Browse the repository at this point in the history
  • Loading branch information
fbraem committed Apr 24, 2021
1 parent 011f674 commit faaf4db
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,24 @@ def set_properties(project):

project.set_property("flake8_verbose_output", True)


project.set_property("distutils_readme_description", True)
project.set_property("distutils_description_overwrite", True)
project.set_property("distutils_readme_file", "README.rst")
project.set_property("distutils_classifiers", [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
])
project.set_property("distutils_setup_keywords", [
"sql-smith", "query", "builder", "querybuilder", "sql", "mysql", "sqlite", "postgres", "sqlserver", "database"
])
project.set_property("distutils_upload_repository_key", "testpypi")

0 comments on commit faaf4db

Please sign in to comment.