-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
28 lines (26 loc) · 859 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
from setuptools import setup
from setuptools import find_packages
setup(
name="emojipastabot",
description="Generate emojipasta from text.",
version="1.0.0",
url="https://github.com/Kevinpgalligan/EmojipastaBot",
author="Kevin Galligan",
author_email="[email protected]",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
],
packages=find_packages("src"),
package_dir={'': 'src'},
package_data={'': ["*.txt", "*.json"]},
include_package_data=True,
install_requires=[
"emoji>=2.0.0,<3.0.0",
"praw>=5.0.0,<6.0.0"
]
)