forked from PyRag/sports-naarad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 920 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import sys
from setuptools import setup
if sys.argv[-1] == 'setup.py':
print('To install, run \'python setup.py install\'')
print()
sys.path.insert(0, 'sports_naarad')
if __name__ == "__main__":
setup(
name = 'sport-naarad',
version = '0.1',
author = 'pyrag-groups',
author_email = 'utkarsh.gupta550@gmail.com',
description = 'Get latest updates for football and cricket on command-line',
url='',
keywords='sports-naarad is a command line tool to get updates for football and cricket',
packages = ['sports_naarad', 'sports_naarad.extern'],
license = 'MIT License',
entry_points = {
'console_scripts': [
'sports-naarad = sports_naarad.naarad:main',
]
},
install_requires = ['beautifulsoup4', 'requests',
'python-dateutil', 'parsedatetime']
)