-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified version name and added setup.cfg
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[metadata] | ||
description-file = README.md |