-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
27 lines (26 loc) · 864 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='django-orphaned',
description='delete all orphaned files from your models',
version='0.4.3',
author='Leonardo Di Lella',
author_email='leonardo.dilella@mobileapart.com',
license='MIT',
url='https://github.com/ledil/django-orphaned',
packages=[
'django_orphaned',
'django_orphaned.management',
'django_orphaned.management.commands'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup'
]
)