Skip to content

Commit

Permalink
fix packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminhon committed Aug 8, 2020
1 parent 1511447 commit f7ff37d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modelmaker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.1"
__version__ = "0.0.2"

from .utils import *
from .framework import *
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
from modelmaker import __version__

setup(
name='modelmaker',
name='model-maker',
version=__version__,
author='shirecoding',
author_email="[email protected]",
scripts=['bin/modelmaker'],
install_requires=[
'Jinja2',
Expand All @@ -15,8 +16,12 @@
url='https://github.com/shirecoding/ModelMaker',
download_url='https://github.com/shirecoding/ModelMaker/archive/0.0.1.tar.gz',
long_description=open('README.md').read(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
zip_safe=False,
include_package_data=True,
packages=find_packages() + [
'modelmaker.resources'
],
Expand Down

0 comments on commit f7ff37d

Please sign in to comment.