-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (57 loc) · 1.62 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (57 loc) · 1.62 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os.path
from setuptools import setup
README = ''
if os.path.exists('README.md'):
with open('README.md') as readme_file:
README = readme_file.read()
REQUIREMENTS = [
'pywin32',
'pyxs',
'six',
'WMI',
]
TEST_REQUIREMENTS = [
'mock',
]
setup(
name='win_pyxs',
version='0.1.1',
description='Windows compatibility for pyxs',
long_description=README,
long_description_content_type='text/markdown',
author='Joel Noyce Barnham',
author_email='joelnbarnham@gmail.com',
url='https://github.com/joelnb/win-pyxs',
packages=['win_pyxs'],
package_dir={
'win_pyxs': 'win_pyxs',
},
include_package_data=True,
install_requires=REQUIREMENTS,
zip_safe=True,
keywords='pyxs xenstore xen',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite='tests',
tests_require=TEST_REQUIREMENTS,
extras_require={
':sys_platform == "win32" and (python_version < "3.5")': [
'backports.socketpair',
]
}
)