-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
32 lines (24 loc) · 851 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
import os
import setuptools
module_path = os.path.join(os.path.dirname(__file__), "emoji_data_python.py")
setuptools.setup(
name="emoji_data_python",
version="0.0.0",
url="https://github.com/alexmick/emoji-data-python/",
author="Alexander Micklewright",
description="Python emoji toolkit",
long_description="Full documentation available on https://emoji-data-python.readthedocs.io/en/latest/",
zip_safe=False,
platforms="any",
python_requires=">=3.6.0",
install_requires=[""],
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)