-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 998 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
28
29
30
31
32
33
34
import pathlib
from setuptools import find_namespace_packages, setup
CURRENT_DIRECTORY = pathlib.Path(__file__).parent
README = (CURRENT_DIRECTORY / "README.md").read_text()
setup(
name="massive.py",
version="0.5.3",
description="Utilities for converting text to massive text, especially on Discord.",
long_description=README,
long_description_content_type="text/markdown",
keywords="massive text discord",
url="https://github.com/TheRandomLabs/massive.py",
project_urls={
"Bug Tracker": "https://github.com/TheRandomLabs/massive.py/issues",
"Source Code": "https://github.com/TheRandomLabs/massive.py"
},
author="TheRandomLabs",
author_email="therandomlabsinc@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
],
packages=find_namespace_packages(),
install_requires=[
"emoji"
]
)