forked from skorokithakis/shortuuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 832 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
#!/usr/bin/env python
import sys
assert sys.version >= '2.5', "Requires Python v2.5 or above."
from setuptools import setup
setup(
name = "shortuuid",
version = "0.3",
author = "Stochastic Technologies",
author_email = "[email protected]",
url = "https://github.com/stochastic-technologies/shortuuid/",
description =
"A generator library for concise, unambiguous and URL-safe UUIDs.",
long_description =
"A library that generates short, pretty, unambiguous unique IDs "
" by using an extensive, case-sensitive alphabet and omitting "
"similar-looking letters and numbers.",
license = "BSD",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3'
],
packages = ["shortuuid"],
)