forked from dcramer/django-uuidfield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 851 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 851 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
29
30
31
from setuptools import setup, find_packages
from setuptools.command.test import test
class mytest(test):
def run(self, *args, **kwargs):
from runtests import runtests
runtests()
setup(
name='django-uuidfield',
version='0.3',
author='David Cramer',
author_email='dcramer@gmail.com',
description='UUIDField in Django',
url='https://github.com/dcramer/django-uuidfield',
zip_safe=False,
install_requires=[
'django',
],
packages=find_packages(),
test_suite = 'uuidfield.tests',
include_package_data=True,
cmdclass={"test": mytest},
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)