Skip to content

Commit c961b0c

Browse files
committed
uploaded to pypi
1 parent f6f10c9 commit c961b0c

File tree

8 files changed

+51
-0
lines changed

8 files changed

+51
-0
lines changed
File renamed without changes.
File renamed without changes.

LICENSE

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
MIT License
2+
Copyright (c) 2018 YOUR NAME
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
The above copyright notice and this permission notice shall be included in all
10+
copies or substantial portions of the Software.
11+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17+
SOFTWARE.

MANIFEST

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
Discord-Emotes\__init__.py
5+
Discord-Emotes\scripts.py

__pycache__/scripts.cpython-38.pyc

-1.82 KB
Binary file not shown.

dist/Discord-Emotes-1.0.tar.gz

1.69 KB
Binary file not shown.

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import pathlib
2+
from setuptools import setup
3+
4+
from distutils.core import setup
5+
setup(
6+
name = 'Discord-Emotes', # How you named your package folder (MyLib)
7+
packages = ['Discord-Emotes'], # Chose the same as "name"
8+
version = '1.0', # Start with a small number and increase it with every change you make
9+
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
10+
description = 'Use it to get gif for commands like pat, slap, poke, hug and more!!!!', # Give a short description about your library
11+
author = 'TheRamann', # Type in your name
12+
author_email = '[email protected]', # Type in your E-Mail
13+
url = 'https://github.com/TheRamann/Discord-Emotes-Python', # Provide either the link to your github or to your website
14+
download_url = 'https://github.com/TheRamann/Discord-Emotes-Python/archive/refs/tags/v1.0.tar.gz', # I explain this later on
15+
keywords = ['discord', 'emotes', 'gif', 'hug', 'smug','kiss', 'pat'], # Keywords that define your package best
16+
install_requires=['requests'],
17+
classifiers=[
18+
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
19+
'Intended Audience :: Developers', # Define that your audience are developers
20+
'Topic :: Software Development :: Build Tools',
21+
'License :: OSI Approved :: MIT License', # Again, pick a license
22+
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
23+
'Programming Language :: Python :: 3.4',
24+
'Programming Language :: Python :: 3.5',
25+
'Programming Language :: Python :: 3.6',
26+
],
27+
)

0 commit comments

Comments
 (0)