-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (37 loc) · 1.06 KB
/
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
34
35
36
37
38
39
40
41
42
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages, setup
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
with open(path) as f:
return f.read()
setup(
name='luizalabs-django-toolkit',
version='2.2.4',
description=(
'The LuizaLabs set of tools '
'to develop projects using the Django framework'
),
long_description=read('README.rst'),
author='Luizalabs',
author_email='pypi@luizalabs.com',
url='https://github.com/luizalabs/django-toolkit',
keywords='django tools logs middleware utils',
install_requires=[
'Django>=1.8',
],
extras_require={
'oauth2': ['django-oauth-toolkit==1.0.0'],
},
packages=find_packages(exclude=[
'tests*'
]),
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
]
)