Skip to content

Commit effa4a8

Browse files
authored
Merge pull request #2 from kakeruzoku/dev
create setup.py
2 parents 1d91900 + 13f9d3a commit effa4a8

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@
77

88
# インストール
99
`pip install -U discord.py`
10+
11+
Wikiは[こちら](https://github.com/kakeruzoku/scapi/wiki )

scapi/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Created by kakeruzoku / https://github.com/kakeruzoku/scapi
22
# Special Thanks: Timmccool / https://github.com/TimMcCool/scratchattach
3+
__version__ = "0.0.1"
34
from others.common import (
45
create_ClientSession,
56
Response,

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from setuptools import setup
2+
from scapi import __version__
3+
4+
with open('README.md', 'r', encoding='utf-8') as fp:
5+
readme = fp.read()
6+
7+
setup(
8+
name="scapi",
9+
version=__version__,
10+
description="ScratchAttachより高機能をめざして。",
11+
long_description=readme,
12+
long_description_content_type='text/markdown',
13+
author="kakeruzoku",
14+
author_email="kakeruzoku@gmail.com",
15+
maintainer="kakeruzoku",
16+
maintainer_email="kakeruzoku@gmail.com",
17+
url="https://github.com/kakeruzoku/scapi",
18+
download_url="https://github.com/kakeruzoku/scapi",
19+
packages=["scapi"],
20+
classifiers=[
21+
"Development Status :: 5 - Production/Stable",
22+
"Intended Audience :: Developers",
23+
"Programming Language :: Python :: 3",
24+
"Operating System :: Unix",
25+
"Operating System :: MacOS :: MacOS X",
26+
"Operating System :: Microsoft :: Windows",
27+
],
28+
license="MIT",
29+
keywords=['scratch api', 'scapi', 'scratch api python', 'scratch python', 'scratch for python', 'scratch', 'scratch bot','scratch tools','scratchapi'],
30+
install_requires=["aiohttp","requests","BeautifulSoup4","asyncio"]
31+
)

0 commit comments

Comments
 (0)