Skip to content

Commit 7b76286

Browse files
committed
change import path and add long description content type
1 parent 0472a47 commit 7b76286

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from distutils.core import setup
1+
from setuptools import setup
22

33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
@@ -9,11 +9,12 @@
99
version = '1.0.0',
1010
license='GPL-3.0',
1111
description = 'An object-oriented wrapper for the KIPR Botball library with additional functionalities.',
12+
long_description_content_type="text/markdown",
1213
long_description=long_description,
1314
author = 'snow4060',
1415
author_email = '[email protected]',
1516
url = 'https://github.com/snow4060',
16-
download_url = 'https://github.com/ihsrobotics/IHSBotballKit/archive/refs/tags/1.0.0.tar.gz', # I explain this later on
17+
download_url = 'https://github.com/ihsrobotics/IHSBotballKit/archive/refs/tags/1.0.0.tar.gz',
1718
keywords = ['KIPR', 'BOTBALL', 'WOMBAT', 'LIBKIPR', 'LIBWALLABY'],
1819
install_requires=[
1920
'numpy',
@@ -23,7 +24,7 @@
2324
'Development Status :: 4 - Beta',
2425
'Intended Audience :: Developers',
2526
'Topic :: Software Development :: Build Tools',
26-
'License :: OSI Approved :: GNU General Public License v3.0 (GPL-3.0)',
27+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
2728
'Programming Language :: Python :: 3',
2829
],
2930
)

0 commit comments

Comments
 (0)