forked from aljungberg/hhc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.05 KB
/
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
from distutils.core import setup
try:
import pypandoc
# This bit requires pandoc. On Mac OS X:
# brew install haskell-platform && cabal update && cabal install pandoc
description = pypandoc.convert('README.md', 'rst', format='markdown')
except (IOError, OSError, ImportError):
description = ''
setup(
name='hexahexacontadecimal',
version='1.0',
description='Encode and decode hexahexacontadecimal numbers, a compact number representation for URLs.',
author='Alexander Ljungberg',
author_email='aljungberg@slevenbits.com',
url='https://github.com/aljungberg/hexahexacontadecimal',
packages=['hexahexacontadecimal'],
keywords=["base64", "hexahexacontadecimal", "base66", "url"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
],
long_description=description
)