-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 868 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
# -*- coding: utf-8 -*-
import sys
import fastentrypoints
from setuptools import find_packages, setup
if not sys.version_info[0] == 3:
sys.exit("Python 3 is required. Use: \'python3 setup.py install\'")
dependencies = ["icecream", "click", "colorama"]
config = {
"version": "0.1",
"name": "unicodehaz",
"url": "https://github.com/jakeogh/unicodehaz",
"license": "ISC",
"author": "Justin Keogh",
"author_email": "[email protected]",
"description": "Short explination of what it does _here_",
"long_description": __doc__,
"packages": find_packages(exclude=['tests']),
"include_package_data": True,
"zip_safe": False,
"platforms": "any",
"install_requires": dependencies,
"entry_points": {
"console_scripts": [
"unicodehaz=unicodehaz.unicodehaz:cli",
],
},
}
setup(**config)