-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (35 loc) · 1.07 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
43
44
# coding: utf-8
from setuptools import setup, find_packages
def README():
with open('README.rst') as f:
return f.read()
setup(
name='django-auth-utils',
description='Django authentication and authorization utilities',
long_description=README(),
url='https://github.com/pjdelport/django-auth-utils',
author='Pi Delport',
author_email='pjdelport@gmail.com',
package_dir={'': 'src'},
packages=find_packages('src'),
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=[
'attrs',
'Django',
],
license='Public Domain',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: Public Domain',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
],
)