FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
stacklesslib/setup.py at master · stackless-dev/stacklesslib · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
stackless-dev
/
stacklesslib
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
stacklesslib
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (20 loc) · 680 Bytes
Breadcrumbs
stacklesslib
/
setup.py
Copy path
File metadata and controls
23 lines (20 loc) · 680 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from
ez_setup
import
use_setuptools
use_setuptools
()
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"stacklesslib"
,
version
=
"0.2.0"
,
packages
=
find_packages
(),
# metadata for upload to PyPI
author
=
"Kristján Valur Jónsson"
,
author_email
=
"sweskman@gmail.com"
,
description
=
"A set of essential utilities for Stackless"
,
license
=
"PSF"
,
keywords
=
"stackless"
,
url
=
"https://bitbucket.org/stackless-dev/stacklesslib"
,
test_suite
=
"stacklesslib.test.run.load_tests"
,
use_2to3
=
True
,
use_2to3_exclude_fixers
=
[
'lib2to3.fixes.fix_throw'
],
)
Back
|
FazBrowse Home
|
New Git URL