Skip to content

Commit

Permalink
setup: update version and description format
Browse files Browse the repository at this point in the history
  • Loading branch information
machinekoder committed May 17, 2019
1 parent 9eb9763 commit 0045d43
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
PROJECT = 'machinetalk'
PROJECT_NAME = '%s-protobuf' % PROJECT
DESCRIPTION = "Protobuf Python modules for %s" % PROJECT
VERSION = "1.1.0"
VERSION = "1.1.1"
AUTHOR = "Alexander Roessler"
AUTHOR_EMAIL = "[email protected]"
PROJECT_URL = 'https://github.com/machinekit/%s' % PROJECT_NAME
DOWNLOAD_URL = 'https://github.com/machinekit/%s/archive/%s.tar.gz' % (PROJECT_NAME, VERSION)
DOWNLOAD_URL = 'https://github.com/machinekit/%s/archive/%s.tar.gz' % (
PROJECT_NAME, VERSION)
KEYWORDS = 'protobuf machinekit motion-control hal'

here = path.abspath(path.dirname(__file__))
Expand All @@ -36,6 +37,7 @@

description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",

# The project's main homepage.
url=PROJECT_URL,
Expand Down Expand Up @@ -80,12 +82,14 @@

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(where='python', exclude=['contrib', 'docs', 'tests']),
package_dir={'': 'python'}, # Our packages live under src but src is not a package itself
packages=find_packages(where='python', exclude=[
'contrib', 'docs', 'tests']),
# Our packages live under src but src is not a package itself
package_dir={'': 'python'},

# Alternatively, if you want to distribute just a my_module.py, uncomment
# this:
#py_modules=["corenlp_protobuf"],
# py_modules=["corenlp_protobuf"],

# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
Expand Down

0 comments on commit 0045d43

Please sign in to comment.