Skip to content

Commit

Permalink
modified version name and added setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
OvroAbir committed Jun 13, 2019
1 parent 6a60410 commit e8b3aa2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
from distutils.core import setup
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()


setup(
name = 'usnews-scrapper',
packages = ['usnews-scrapper'],
version = '0.1',
version = 'v0.1',
license='MIT',
description = 'Collects Grad School data from https://www.usnews.com and gives output in a .xls file.',
author = 'Joy Ghosh',
author_email = '[email protected]',
url = 'https://www.ijoyghosh.com',
download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
#download_url = 'https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
keywords = ['scraper', 'usnews', 'graduate', 'grad', 'school', 'university', 'crawler'],
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'requests==2.22.0',
'tablib==0.13.0',
Expand Down
2 changes: 2 additions & 0 deletions usnews-scrapper/setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md

0 comments on commit e8b3aa2

Please sign in to comment.