-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
32 lines (30 loc) · 973 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf8').read()
setup(
name='django-micro',
description='Django as a microframework',
long_description=read('README.rst'),
keywords='django microframework',
py_modules=['django_micro'],
version='1.8.0',
author='Max Poletaev',
author_email='[email protected]',
url='https://github.com/zenwalker/django-micro',
license='BSD',
install_requires=[
'django>=2.1',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 3.0',
],
)