forked from chayleaf/osu-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 807 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name='osu.py',
version='0.0.19',
author='pavlukivan',
author_email='[email protected]',
description='A multipurpose osu! library, aiming to cover practically any use case over time',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pavlukivan/osu-py',
packages=['osu'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Games/Entertainment',
],
keywords='osu api osugame beatmap collection score db',
install_requires=[],
python_requires='>=3',
)