From b250223f162a253574a29dc9763cbd60c1f37e04 Mon Sep 17 00:00:00 2001 From: Tiago Lira Date: Sat, 30 Apr 2016 13:03:50 -0300 Subject: [PATCH] Adding setup.py to pypi --- LICENSE => LICENSE.txt | 0 setup.cfg | 2 ++ setup.py | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) rename LICENSE => LICENSE.txt (100%) create mode 100644 setup.cfg 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=[], )