forked from Virtualstock/log_storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (21 loc) · 752 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·24 lines (21 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import os
from setuptools import setup
long_description = 'Please see our GitHub README'
if os.path.exists('README.md'):
long_description = open('README.md').read()
setup(
name='log_storage',
version='0.4.0',
license='MIT',
description='Log handler to store messages with a database record and optional file storage.',
keywords=['Django', 'Log', 'App'],
long_description=long_description,
long_description_content_type='text/markdown',
author='Virtualstock',
author_email='development.team@virtualstock.com',
url='https://github.com/virtualstock/log_storage/',
packages=['log_storage', 'log_storage.migrations'],
include_package_data=True,
install_requires=['django'],
)