-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (26 loc) · 992 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
29
from setuptools import setup,find_packages
import cricket_rankings as cr
import pypandoc
with open('requirements.txt') as f:
requirements = f.readlines()
long_description = pypandoc.convert('README.md', 'rst')
setup(
name=cr.__name__,
version=cr.__version__,
author=cr.__author__,
author_email='[email protected]',
url='http://github.com/umangahuja1/cricket_rankings',
description='Cricket rankings of teams and players across all the formats for both men and women',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
packages=find_packages(),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
keywords='package cricket cricket-rankings cricket_rankings',
install_requires=requirements,
zip_safe=False
)