-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
30 lines (27 loc) · 907 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
from setuptools import find_packages, setup
import attachments
setup(
name='django-dynamic-attachments',
version=attachments.__version__,
description='A Django application for handling file uploads and attaching them to arbitrary models.',
author='Dan Watson',
author_email='[email protected]',
url='https://github.com/imsweb/django-dynamic-attachments',
license='BSD',
packages=find_packages(exclude=('testapp',)),
include_package_data=True,
install_requires=[
'pyclamd',
'six',
'python-magic',
'python-magic-bin;platform_system=="Windows"',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
)