mirror of
https://github.com/daknuett/licor
synced 2024-07-20 12:15:24 +00:00
added proper upload routines
This commit is contained in:
parent
2430c79f9a
commit
99cef366e4
17
Makefile
Normal file
17
Makefile
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
|
||||||
|
clean:
|
||||||
|
python3 setup.py clean
|
||||||
|
sdist: clean
|
||||||
|
python3 setup.py sdist
|
||||||
|
|
||||||
|
bdist_wheel: clean
|
||||||
|
python3 setup.py bdist_wheel
|
||||||
|
|
||||||
|
install:
|
||||||
|
python3 setup.py install
|
||||||
|
|
||||||
|
upload: sdist bdist_wheel
|
||||||
|
twine upload dist/*
|
||||||
|
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -2,12 +2,14 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = "licor",
|
name = "licor",
|
||||||
version = "0.0.1",
|
version = "0.0.2",
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = {"licor": ["templates/*", "templates/*/*"]},
|
package_data = {"licor": ["templates/*", "templates/*/*"]},
|
||||||
author = "Daniel Knüttel",
|
author = "Daniel Knüttel",
|
||||||
author_email = "daniel.knuettel@daknuett.eu",
|
author_email = "daniel.knuettel@daknuett.eu",
|
||||||
install_requires = ["docopt"],
|
install_requires = ["docopt"],
|
||||||
|
description = "A script to add license disclaimers",
|
||||||
|
long_description = open("README.rst").read(),
|
||||||
|
|
||||||
entry_points = {"console_scripts": ["licor = licor.main:main"]}
|
entry_points = {"console_scripts": ["licor = licor.main:main"]}
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user