FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SRL-Python/setup.py at master · SimpleRegex/SRL-Python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jun 9, 2025. It is now read-only.
SimpleRegex
/
SRL-Python
Public archive
Notifications
You must be signed in to change notification settings
Fork
8
Star
78
Code
Issues
5
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
SRL-Python
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
50 lines (44 loc) · 1.44 KB
Breadcrumbs
SRL-Python
/
setup.py
Copy path
File metadata and controls
executable file
·
50 lines (44 loc) · 1.44 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from
setuptools
import
setup
,
find_packages
with
open
(
'README.rst'
)
as
readme_file
:
readme
=
readme_file
.
read
()
with
open
(
'HISTORY.rst'
)
as
history_file
:
history
=
history_file
.
read
()
requirements
=
[
]
test_requirements
=
[
]
setup
(
name
=
'SRL'
,
version
=
'0.1.0'
,
description
=
"Python implementation of SRL."
,
long_description
=
readme
+
'
\n
\n
'
+
history
,
author
=
"Simple Regex Language"
,
maintainer
=
'Lin Ju'
,
maintainer_email
=
'soasme@gmail.com'
,
platforms
=
'any'
,
url
=
'https://github.com/SimpleRegex/SRL-Python'
,
packages
=
find_packages
(
exclude
=
(
'tests'
,
'tests.*'
,
'*.tests'
,
'*.tests.*'
, )),
package_dir
=
{
'srl'
:
'srl'
},
include_package_data
=
True
,
install_requires
=
requirements
,
license
=
"MIT"
,
zip_safe
=
False
,
keywords
=
're,regex,srl,simpleregex'
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'Natural Language :: English'
,
"Programming Language :: Python :: 2"
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: Implementation :: PyPy'
,
'Topic :: Text Processing'
,
],
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
)
Back
|
FazBrowse Home
|
New Git URL