-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 837 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 837 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from hashmoji import get_version
setup(
name="hashmoji",
version=get_version(),
description="Visualize hashes and bytes with emoji.",
author="Matt Croydon",
author_email="mcroydon@gmail.com",
long_description=open("README.rst", "r").read(),
url="https://github.com/mcroydon/hashmoji",
py_modules=["hashmoji"],
scripts=["hashmoji.py"],
test_suite="tests.test_suite",
license="BSD",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
],
)