-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 711 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
readme = fh.read()
setup(name='bsdotpy',
version='0.1.2',
description='BSDotPy, A module to get a bombsquad player\'s account data.',
long_description=readme,
long_description_content_type="text/markdown",
url='https://github.com/FireHead90544/bsdotpy',
project_urls={
"Issue tracker": "https://github.com/FireHead90544/bsdotpy/issues",
},
author='Rudransh Joshi',
author_email='rudranshjoshi1806@gmail.com',
platforms='any',
license='Apache License 2.0',
packages=['bsdotpy'],
zip_safe=False,
install_requires=["requests", "bs4"])