-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 689 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 689 Bytes
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
ver = '1.0.0'
with open('README.md', 'r') as f:
long_desc = f.read()
setup(
name = 'op.py',
packages = ['oppy'],
version = ver,
license='MIT',
description = 'A wrapper made for the osu! v2 API.',
long_description= long_desc,
long_description_content_type = 'text/markdown',
author = 'Wayde B',
author_email = 'wayde@alphaxdev.xyz',
url = 'https://github.com/waydealphax/oppy',
keywords = ['osuapi', 'osu', 'osuapiv2'],
install_requires=[
'aiohttp',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)