diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..112c6b9 --- /dev/null +++ b/MANIFEST @@ -0,0 +1,6 @@ +# file GENERATED by distutils, do NOT edit +setup.cfg +setup.py +anyfig/__init__.py +anyfig/anyfig_setup.py +anyfig/figutils.py diff --git a/setup.py b/setup.py index 5208d34..f006194 100644 --- a/setup.py +++ b/setup.py @@ -2,13 +2,13 @@ setup( name='anyfig', packages=['anyfig'], - version='0.0.2', + version='0.0.3', license='MIT', description='Config parameters in Python code. Anything is possible ;)', author='Olof Harrysson', author_email='harrysson.olof@gmail.com', url='https://github.com/OlofHarrysson/anyfig', - download_url='https://github.com/OlofHarrysson/anyfig/archive/0.0.2.tar.gz', + download_url='https://github.com/OlofHarrysson/anyfig/archive/0.0.3.tar.gz', keywords=['config', 'command line parsing', 'python classes', 'dynamic'], install_requires=['fire'], classifiers=[ @@ -20,4 +20,4 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], -) \ No newline at end of file +)