forked from Coffee-fueled-deadlines/OSRSBytes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 748 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='OSRSBytes',
version='1.2.4',
author="Coffee Fueled Deadlines",
author_email="cookm0803@gmail.com",
description="An all-in-one OSRS Library with Hiscores and Grand Exchange Market Information",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Coffee-fueled-deadlines/OSRSBytes",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)",
"Operating System :: OS Independent",
],
)