forked from benrobster/django-shortuuidfield
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 772 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (24 loc) · 772 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
from setuptools import setup, find_packages
setup(
name='django-customshortuuidfield',
version='0.0.7',
author='Ben Roberts',
author_email='roberts81@gmail.com',
description='Custom Short UUIDField for Django. Good for use in urls & file names. (Base 57, 22 characters)',
url='https://github.com/nick-fournier/django-customshortuuidfield',
zip_safe=False,
install_requires=[
'django',
'shortuuid',
'six'
],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)