-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·41 lines (37 loc) · 1.27 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
37
38
39
40
41
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright © 2016 Absolute Performance Inc <[email protected]>.
# All rights reserved.
# This is proprietary software.
# No warranty, explicit or implicit, provided.
from __future__ import division, absolute_import, print_function, unicode_literals
from setuptools import setup
from texttables import __author__, __description__, __email__, __license__, __modulename__, __version__, __website__
setup(
name=__modulename__,
version=__version__,
description=__description__,
author=__author__,
author_email=__email__,
url=__website__,
license=__license__,
packages=[
'texttables',
'texttables.fixed',
'texttables.dynamic',
],
install_requires=[
'six',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)