-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (50 loc) · 2.02 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup for PyCompatLayer (The compatibility layer for Python)."""
import setuptools
test_requirements = [
"unittest2"
]
setuptools.setup(
zip_safe=True,
name="PyCompatLayer",
version="0.0.10.dev6",
description="Compatibility layer for Python",
long_description="See https://pypi.python.org/pypi/PyCompatLayer",
url="https://github.com/ale5000-git/pycompatlayer",
author="ale5000",
author_email="nospam@nospam",
license="LGPL-3.0-or-later",
platforms=["any"],
package_dir={"": "pycompatlayer"},
py_modules=["pycompatlayer"],
tests_require=test_requirements,
test_suite="tests.custom_test_suite",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
("License :: OSI Approved :: "
"GNU Lesser General Public License v3 or later (LGPLv3+)"),
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"
],
# bugtrack_url="https://github.com/ale5000-git/pycompatlayer/issues",
keywords="python python-library pycompatlayer compatlayer compatibility"
)