This repository was archived by the owner on Jun 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +30
-2
lines changed
Expand file tree Collapse file tree 3 files changed +30
-2
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ m4 -DREVISION=` bin/revision` setup.py.m4 > setup.py
Original file line number Diff line number Diff line change 1616
1717from setuptools import setup , find_packages
1818import subprocess
19- revision = subprocess .check_output ("./bin/revision" )
2019
2120setup (name = "transit-python" ,
22- version = "0.8." + revision ,
21+ version = "0.8.279" ,
2322 description = "Transit marshalling for Python" ,
2423 author = "Cognitect" ,
2524 url = "https://github.com/cognitect/transit-python" ,
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env python
2+
3+ ## Copyright 2014 Cognitect. All Rights Reserved.
4+ ##
5+ ## Licensed under the Apache License, Version 2.0 (the "License");
6+ ## you may not use this file except in compliance with the License.
7+ ## You may obtain a copy of the License at
8+ ##
9+ ## http://www.apache.org/licenses/LICENSE-2.0
10+ ##
11+ ## Unless required by applicable law or agreed to in writing, software
12+ ## distributed under the License is distributed on an "AS-IS" BASIS,
13+ ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ ## See the License for the specific language governing permissions and
15+ ## limitations under the License.
16+
17+ from setuptools import setup , find_packages
18+ import subprocess
19+
20+ setup (name = "transit-python" ,
21+ version = "0.8.REVISION" ,
22+ description = "Transit marshalling for Python" ,
23+ author = "Cognitect" ,
24+ url = "https://github.com/cognitect/transit-python" ,
25+ packages = find_packages (),
26+ install_requires = ["python-dateutil" , "msgpack-python" ])
27+
You can’t perform that action at this time.
0 commit comments