forked from sheagcraig/MacSesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.23 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
import pathlib
from setuptools import setup
project_dir = pathlib.Path(__file__).parent.resolve()
readme = project_dir / 'README.md'
namespace = {}
version_path = project_dir / 'macsesh/version.py'
exec(version_path.read_text(), namespace)
setup(
name='MacSesh',
version=namespace['__version__'],
packages=['macsesh'],
license='GPLv3',
description='Tools for letting the macOS Keychain verify certs for python requests',
long_description=readme.read_text(),
long_description_content_type='text/markdown',
author='Shea G. Craig',
author_email='[email protected]',
url='https://github.com/sheagcraig/MacSesh',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: MacOS X',
'Environment :: MacOS X :: Cocoa',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python :: 3 :: Only'
],
install_requires=['requests', 'pyobjc-framework-SecurityFoundation', 'six'],
python_requires='>=3.6',
)