-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (45 loc) · 1.7 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
import os.path as path
from setuptools import setup, find_packages, dist
import sys
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
setup(name='dxapi',
version='6.0.8',
packages=find_packages(),
package_data={'dxapi': ['windows/x64/py27/*.pyd',
'windows/x64/py36/*.pyd',
'windows/x64/py37/*.pyd',
'windows/x64/py38/*.pyd',
'linux/x64/py27/*.so',
'linux/x64/py36/*.so',
'linux/x64/py37/*.so',
'linux/x64/py38/*.so',
'darwin/x64/py27/*.so',
'darwin/x64/py36/*.so',
'darwin/x64/py37/*.so',
'darwin/x64/py38/*.so',
'darwin/x64/py27/*.dylib',
'darwin/x64/py36/*.dylib',
'darwin/x64/py37/*.dylib',
'darwin/x64/py38/*.dylib']},
include_package_data=True,
zip_safe=False,
description='Python Timebase client API',
long_description='Python Timebase client API',
long_description_content_type='text/markdown',
keywords='timebase, database',
#url='',
author='Raman Kisel',
classifiers=[
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
python_requires='>=2.7,!=2.8.*,!=2.9.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,<3.9',
platforms=['Windows', 'Linux', 'MacOS']
)