-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 872 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 872 Bytes
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
long_description=readme.read()
# Because the package is meant only be consumed on Windows,
# we hardcode the python lib library
python_lib_win = "lib/site-packages"
setup(
name='python-certifi-win32',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Add windows certificate store to certifi cacerts.',
long_description=long_description,
author='Andrew Leech',
author_email='andrew.leech@planetinnovation.com.au',
license='BSD',
url='https://gitlab.com/alelec/python-certifi-win32',
packages=['certifi_win32'],
data_files=[(python_lib_win, ['python-certifi-win32-init.pth'])],
install_requires=['wrapt>=1.10.4', 'wincertstore;python_version<"3.4"', 'certifi', 'setuptools_scm'],
)