FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-textile/setup.py at py26 · philippbosch/python-textile · GitHub
philippbosch
/
python-textile
Public
forked from
textile/python-textile
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-textile
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (25 loc) · 855 Bytes
Breadcrumbs
python-textile
/
setup.py
Copy path
File metadata and controls
27 lines (25 loc) · 855 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
24
25
26
27
from
setuptools
import
setup
,
find_packages
version
=
__import__
(
'textile'
).
__version__
setup
(
name
=
'textile'
,
version
=
version
,
description
=
'Textile processing for python.'
,
author
=
'Chris Drackett'
,
author_email
=
'chris@chrisdrackett.com'
,
url
=
'http://github.com/chrisdrackett/python-textile'
,
packages
=
find_packages
(),
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Environment :: Web Environment'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: BSD License'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
keywords
=
'textile,text'
,
test_suite
=
'nose.collector'
,
tests_require
=
[
'nose'
],
include_package_data
=
True
,
zip_safe
=
False
,
)
Back
|
FazBrowse Home
|
New Git URL