File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ Pygments
1
2
six
Original file line number Diff line number Diff line change
1
+ [bdist_wheel]
2
+ universal = 1
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
import os .path
3
3
4
- here = os . path . abspath ( os . path . dirname ( __file__ ))
5
- README = open ( os . path . join ( here , ' README.rst' )) .read ()
4
+ with open ( 'README.rst' ) as f :
5
+ README = f .read ()
6
6
7
- version = '1.5'
7
+ with open ('requirements.txt' ) as f :
8
+ requires = f .read ().strip ().splitlines ()
9
+
10
+ version = '1.6'
8
11
9
12
setup (name = 'regexlint' ,
10
13
version = version ,
23
26
url = 'https://github.com/thatch/regexlint' ,
24
27
license = 'Apache' ,
25
28
packages = find_packages ('.' ),
26
- install_requires = [ 'Pygments' ] ,
29
+ install_requires = requires ,
27
30
entry_points = {
28
31
'console_scripts' : [
29
32
'regexlint=regexlint.cmdline:main' ,
You can’t perform that action at this time.
0 commit comments