FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-future/setup.py at native_stdlib · dev-zero/python-future · GitHub
dev-zero
/
python-future
Public
forked from
PythonCharmers/python-future
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-future
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
102 lines (94 loc) · 2.89 KB
Breadcrumbs
python-future
/
setup.py
Copy path
File metadata and controls
102 lines (94 loc) · 2.89 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env python
import
os
import
sys
try
:
from
setuptools
import
setup
except
ImportError
:
from
distutils
.
core
import
setup
import
future
if
sys
.
argv
[
-
1
]
==
'publish'
:
os
.
system
(
'python setup.py sdist upload'
)
sys
.
exit
()
NAME
=
"future"
PACKAGES
=
[
"future"
,
"future.builtins"
,
"future.builtins.types"
,
"future.standard_library"
,
"future.standard_library"
,
"future.standard_library.email"
,
"future.standard_library.email.mime"
,
"future.standard_library.html"
,
"future.standard_library.http"
,
"future.standard_library.test"
,
"future.standard_library.urllib"
,
"future.standard_library.xmlrpc"
,
"future.moves.html"
,
"future.moves.http"
,
"future.moves.test"
,
"future.moves.urllib"
,
"future.moves.xmlrpc"
,
"future.tests"
,
"future.tests.test_email"
,
"future.utils"
,
"past"
,
"past.builtins"
,
"past.builtins.types"
,
"past.utils"
,
"past.tests"
,
"past.translation"
,
"libfuturize"
,
"libfuturize.fixes"
,
"libpasteurize"
,
"libpasteurize.fixes"
]
PACKAGE_DATA
=
{
''
: [
'README.rst'
,
'LICENSE.txt'
,
'futurize.py'
,
'pasteurize.py'
,
'discover_tests.py'
,
'check_rst.sh'
]}
REQUIRES
=
[]
VERSION
=
future
.
__version__
DESCRIPTION
=
"Clean single-source support for Python 3 and 2"
LONG_DESC
=
future
.
__doc__
AUTHOR
=
"Ed Schofield"
AUTHOR_EMAIL
=
"ed@pythoncharmers.com"
URL
=
"https://github.com/PythonCharmers/python-future"
LICENSE
=
"MIT"
KEYWORDS
=
"future python3 migration backport six 2to3 futurize modernize past pasteurize"
CLASSIFIERS
=
[
"Programming Language :: Python"
,
"Programming Language :: Python :: 2.6"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.3"
,
"License :: OSI Approved"
,
"License :: OSI Approved :: MIT License"
,
"Development Status :: 4 - Beta"
,
"Intended Audience :: Developers"
,
]
setup_kwds
=
{}
setup
(
name
=
NAME
,
version
=
VERSION
,
author
=
AUTHOR
,
author_email
=
AUTHOR_EMAIL
,
url
=
URL
,
description
=
DESCRIPTION
,
long_description
=
LONG_DESC
,
license
=
LICENSE
,
keywords
=
KEYWORDS
,
entry_points
=
{
'console_scripts'
: [
'futurize = libfuturize.main:main'
,
'pasteurize = libpasteurize.main:main'
]
},
packages
=
PACKAGES
,
package_data
=
PACKAGE_DATA
,
include_package_data
=
True
,
install_requires
=
REQUIRES
,
classifiers
=
CLASSIFIERS
,
test_suite
=
"discover_tests"
,
**
setup_kwds
)
Back
|
FazBrowse Home
|
New Git URL