-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (35 loc) · 1.31 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
import pathlib
from setuptools import setup, find_packages
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='pygame-markdown',
packages=find_packages(),
include_package_data=True,
license='MIT',
description=('A renderer for markdown text onto pygame surfaces.'),
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/CribberSix/pygame-markdown',
version='1.1.6',
python_requires=">=3.6",
author='CribberSix',
author_email='[email protected]',
install_requires=['pygame>=1.9.6', 'markdown>=3.3.3'],
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Software Development',
],
keywords=['pygame', 'markdown', 'text', 'rendering'],
)