File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = '1.7'
51
+ sys .path .insert (0 , '..' )
52
+ from tweepy import __version__
53
+
54
+ version = __version__
52
55
# The full version, including alpha/beta/rc tags.
53
- release = '1.7'
56
+ release = __version__
54
57
55
58
# The language for content autogenerated by Sphinx. Refer to documentation
56
59
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
#from distutils.core import setup
3
3
from setuptools import setup , find_packages
4
+ from tweepy import __version__
4
5
5
6
setup (name = "tweepy" ,
6
- version = "1.9" ,
7
+ version = __version__ ,
7
8
description = "Twitter library for python" ,
8
9
license = "MIT" ,
9
10
author = "Joshua Roesslein" ,
You can’t perform that action at this time.
0 commit comments