-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (34 loc) · 1.06 KB
/
setup.py
File metadata and controls
47 lines (34 loc) · 1.06 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
import io
import sys
try:
from setuptools import setup, find_packages
except:
from distutils.core import setup
with io.open('./README.rst', encoding='utf-8') as f:
readme = f.read()
version = '0.0.3'
setup(
name="PyTrafodion",
version=version,
description='Pure Python Trafodion Driver',
long_description=readme,
url="https://github.com/CoderSong2015/Trafodion-pythondriver",
author='Haolin Song',
author_email='haolin.song@outlook.com',
packages=find_packages(exclude=['tests*']),
install_requires=[
"cryptography",
],
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Topic :: Database',
],
keywords="Trafodion",
)