File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ include *.py
22include *.txt
33include *.rst
44include MANIFEST.in
5+ include RELEASE.notes
6+ recursive-include telesign *.py
Original file line number Diff line number Diff line change 1+ Release 1.1.1
2+
3+ - Fixed setup.py packages directive and added recursive-include to manifest.
4+
15Release 1.1.0
26
37- This module should now work with Python3.4+ (and has been tested
Original file line number Diff line number Diff line change 44from distutils .cmd import Command
55
66
7- version = "1.1.0 "
7+ version = "1.1.1 "
88
99f = open ("README.rst" )
1010try :
@@ -72,10 +72,8 @@ def run(self):
7272 author = 'TeleSign Corp.' ,
7373 author_email = 'support@telesign.com' ,
7474 url = "http://github.com/telesign/python_telesign" ,
75- install_requires = ['requests' ,
76- ],
77-
78- packages = find_packages (exclude = ['test' , 'test.*' ]),
75+ install_requires = ['requests' ],
76+ packages = ["telesign" ],
7977 namespace_packages = ["telesign" ],
8078 cmdclass = {"doc" : doc },
8179 )
You can’t perform that action at this time.
0 commit comments