-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.28 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
# Standard Library
import os
# Third Party
from setuptools import find_packages, setup
CURRENT_WORKING_DIRECTORY = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(CURRENT_WORKING_DIRECTORY, 'README.md')) as fp:
README = fp.read()
setup(
name='vb-console',
version='1.1.2',
description='Logger and object inspector for Python',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/vbyazilim/vb-console',
author='vb YAZILIM',
author_email='[email protected]',
license='MIT',
python_requires='>=3.0',
package_dir={'': 'src'},
packages=find_packages(where='src', exclude=['tests', 'examples']),
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='vbyazilim, console, debug, log, test',
project_urls={
'VB YAZILIM': 'https://vbyazilim.com',
'Source': 'https://github.com/vbyazilim/vb-console',
},
include_package_data=True,
)