Skip to content

Commit

Permalink
update v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Solo-FL committed Feb 3, 2022
1 parent 4000e0c commit 92848e9
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
from distutils.core import setup
setup(
name = 'SoloPy', # How you named your package folder (MyLib)
packages = ['SoloPy'], # Chose the same as "name"
version = 'v1.0', # Start with a small number and increase it with every change you make
license='gpl-3.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'PYTHON Library for Control Solo Motor', # Give a short description about your library
author = 'Solo', # Type in your name
author_email = 'support@solomotorcontrollers.com', # Type in your E-Mail
url = 'https://github.com/Solo-FL/SoloPy', # Provide either the link to your github or to your website
download_url = 'https://github.com/Solo-FL/SoloPy/archive/refs/tags/v1.0.tar.gz', # I explain this later on
keywords = ['Solo Motor controllers', 'Solo', 'SoloPy'], # Keywords that define your package best
install_requires=[ # I get to this in a second
name = 'SoloPy',
packages = ['SoloPy'],
version = 'v2.0',
license='gpl-3.0',
description = 'PYTHON Library for Control Solo Motor',
author = 'Solo',
author_email = 'support@solomotorcontrollers.com',
url = 'https://github.com/Solo-FL/SoloPy',
download_url = 'https://github.com/Solo-FL/SoloPy/archive/refs/tags/v2.0.tar.gz',
keywords = ['Solo Motor controllers', 'Solo', 'SoloPy'],
install_requires=[
'pyserial'
],
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down

0 comments on commit 92848e9

Please sign in to comment.