-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 965 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
import multiprocessing
from setuptools import setup
with open ('README.md', 'r') as README:
Description = README.read ()
setup (
name = 'DavesLogger',
version = '1.1.0',
packages = ['DavesLogger'],
author = 'Munchii',
author_email = '[email protected]',
license = 'MIT',
description = 'Simple logger for Python',
long_description = Description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/Dmunch04/DavesLogger',
install_requires = [
'colorama'
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
keywords = 'simple logger for python'
)