-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (24 loc) · 900 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
from setuptools import setup
setup(
name='socklocks',
version='0.1.1',
description='Library of Python locks that use sockets to keep processes '
'synchronized.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=(
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
),
keywords=('query string', 'querystring', 'URL', 'parser'),
author='Justin Turner Arthur',
author_email='[email protected]',
url='https://github.com/JustinTArthur/socklocks',
license='Apache License 2.0',
py_modules=('socklocks',),
python_requires='~=3.3'
)