forked from scailer/django-user-activity-log
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
43 lines (36 loc) · 1.19 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as fh:
readme = fh.read()
setup(
name='django-user-activity-log2',
version='0.0.25',
author='sebatyler',
author_email='sebatyler@gmail.com',
include_package_data=True,
packages=[
'activity_log',
'activity_log.migrations',
],
url='https://github.com/sebatyler/django-user-activity-log/',
license='MIT license',
description='HTTP queries logger with flexible filters.',
long_description=readme,
long_description_content_type="text/markdown",
install_requires=[
],
classifiers=(
'Framework :: Django',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
),
)