forked from talkincode/pymschap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (17 loc) · 651 Bytes
/
setup.py
File metadata and controls
18 lines (17 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup
setup(
name='py3mschap',
version='0.2post1',
packages=['py3mschap'],
url='https://github.com/astibal/py3mschap',
license='LGPL',
author='Ales Stibal',
author_email='astib@mag0.net',
description='python3 mschap module', long_description=open('README.md').read(),
classifiers=[
'Development Status :: 4 - Beta', 'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=['mschap','mschapv1', 'mschapv2','py3mschap'],
long_description_content_type='text/markdown'
)