-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
33 lines (29 loc) · 981 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
31
32
33
import os
from distutils.core import setup
import viewsets
REPOSITORY_PATH = os.path.dirname(__file__)
setup(
name='django-viewsets',
author=viewsets.__author__,
author_email=viewsets.__email__,
version=viewsets.__version__,
description='Avoid boring views and urls.',
long_description=open(os.path.join(REPOSITORY_PATH, 'README.rst')).read(),
url='https://github.com/BertrandBordage/django-viewsets',
license=viewsets.__license__,
platforms=['OS Independent'],
classifiers=[
'Development Status :: ' + viewsets.__status__,
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'Django >= 2.0',
],
packages=['viewsets'],
)