-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
populate setup.py, use setuptools_scm for versioning
- Loading branch information
1 parent
bf4c92f
commit b8ee15b
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
from setuptools import setup, find_packages | ||
|
||
|
||
long_description = """\ | ||
drawbot-skia is a cross-plantform reimplementation of the drawing API | ||
of the [DrawBot application for macOS](https://www.drawbot.com/). | ||
""" | ||
|
||
|
||
setup( | ||
name="drawbot-skia", | ||
use_scm_version={"write_to": "src/drawbot_skia/_version.py"}, | ||
description="Drawbot implements a simple drawing API to generate 2D vector graphics", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Just van Rossum", | ||
author_email="[email protected]", | ||
url="http://github.com/justvanrossum/drawbot-skia", | ||
entry_points={ | ||
'console_scripts': ['drawbot=drawbot_skia.__main__:main'], | ||
}, | ||
|
@@ -20,5 +32,17 @@ | |
setup_requires=["setuptools_scm"], | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Environment :: Console", | ||
"Environment :: Other Environment", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: End Users/Desktop", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Multimedia :: Graphics", | ||
|
||
], | ||
) |