diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..5d40e21 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +prune indexdigest/test diff --git a/Makefile b/Makefile index 10de9b0..0058fff 100644 --- a/Makefile +++ b/Makefile @@ -28,3 +28,7 @@ demo: sql-console: mysql --protocol=tcp -uindex_digest -pqwerty index_digest + +publish: + # run git tag -a v0.0.0 before running make publish + python setup.py sdist upload -r pypi diff --git a/setup.py b/setup.py index 764d25e..7711511 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ version=VERSION, author='Maciej Brencz', author_email='maciej.brencz@gmail.com', + license='MIT', description='Analyses your database queries and schema and suggests indices improvements', url='https://github.com/macbre/index-digest', packages=find_packages(),