-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
24 lines (21 loc) · 807 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(name='django-auto-serializer',
version='0.4.3',
description="Django app that automates objects tree serialization recursively",
long_description=README,
long_description_content_type='text/markdown',
classifiers=['Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only'],
url='https://github.com/peppelinux/django-auto-serializer',
author='Giuseppe De Marco',
author_email='[email protected]',
license='BSD',
packages=['django_auto_serializer'],
install_requires=[
'django>=2.0,<4.0',
],
)