diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index f2a9fa4..2e83b04 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,8 @@ author='Tiago Lira', author_email='tiagolira.dev@gmail.com', license='MIT', + url='https://github.com/Tiago-Lira/scrapyd-mongodb', + download_url='https://github.com/Tiago-Lira/scrapyd-mongodb/tarball/0.1.0', keywords=['scrapy', 'scrapyd', 'mongodb', 'queue', 'scrapyd-queue', 'scrapyd-backend', 'backend'], include_package_data=True, @@ -17,5 +19,6 @@ install_requires=[ 'scrapy', 'pymongo', - ] + ], + classifiers=[], )