Skip to content

Commit f7ff37d

Browse files
committed
fix packaging
1 parent 1511447 commit f7ff37d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

modelmaker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"
22

33
from .utils import *
44
from .framework import *

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
from modelmaker import __version__
44

55
setup(
6-
name='modelmaker',
6+
name='model-maker',
77
version=__version__,
88
author='shirecoding',
9+
author_email="[email protected]",
910
scripts=['bin/modelmaker'],
1011
install_requires=[
1112
'Jinja2',
@@ -15,8 +16,12 @@
1516
url='https://github.com/shirecoding/ModelMaker',
1617
download_url='https://github.com/shirecoding/ModelMaker/archive/0.0.1.tar.gz',
1718
long_description=open('README.md').read(),
19+
classifiers=[
20+
"Programming Language :: Python :: 3",
21+
"License :: OSI Approved :: MIT License",
22+
"Operating System :: OS Independent",
23+
],
1824
zip_safe=False,
19-
include_package_data=True,
2025
packages=find_packages() + [
2126
'modelmaker.resources'
2227
],

0 commit comments

Comments
 (0)