Skip to content

Commit

Permalink
updates from python-package-template
Browse files Browse the repository at this point in the history
  • Loading branch information
craigahobbs committed Aug 12, 2021
1 parent bc22f03 commit a589512
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2012 Craig Hobbs
Copyright (c) 2012 Craig A. Hobbs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Licensed under the MIT License
# https://github.com/craigahobbs/chisel/blob/main/LICENSE

# Download Python Build base makefile and pylintrc
# Download Python Build
define WGET
ifeq '$$(wildcard $(notdir $(1)))' ''
$$(info Downloading $(notdir $(1)))
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# -- Project information -----------------------------------------------------

project = 'chisel'
copyright = '2012, Craig Hobbs'
author = 'Craig Hobbs'
copyright = '2012, Craig A. Hobbs'
author = 'Craig A. Hobbs'

# The full version, including alpha/beta/rc tags
import os
Expand Down
11 changes: 5 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

from setuptools import setup

MODULE_NAME = 'chisel'
PACKAGE_NAME = MODULE_NAME

def main():
# Read the readme for use as the long description
Expand All @@ -17,15 +15,15 @@ def main():

# Do the setup
setup(
name=PACKAGE_NAME,
name='chisel',
description='Light-weight WSGI application framework, schema-validated JSON APIs, and API documentation.',
long_description=long_description,
long_description_content_type='text/x-rst',
version='1.1.1',
author='Craig Hobbs',
author='Craig A. Hobbs',
author_email='craigahobbs@gmail.com',
keywords='api json framework schema wsgi',
url='https://github.com/craigahobbs/' + PACKAGE_NAME,
url='https://github.com/craigahobbs/chisel',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand All @@ -41,11 +39,12 @@ def main():
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
package_dir={'': 'src'},
packages=[MODULE_NAME],
packages=['chisel'],
install_requires=[
'schema-markdown >= 1.0.0'
]
)


if __name__ == '__main__':
main()

0 comments on commit a589512

Please sign in to comment.