-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 998 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
from setuptools import setup
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Python Modules",
]
def readme():
with open('README.rst') as f:
return f.read()
setup(name='uuid0',
version='0.2.7',
description='A library to make better timestamped UUIDs for databases and web apps',
long_description=readme(),
url='https://github.com/oaclaf/uuid0',
author='oaclaf',
author_email='[email protected]',
license='MIT',
classifiers=CLASSIFIERS,
packages=['uuid0'],
install_requires=['pybase62'],
zip_safe=False)