File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 13
13
here = path .abspath (path .dirname (__file__ ))
14
14
15
15
# Get the long description from the README file
16
- with open (path .join (here , 'README.md ' ), encoding = 'utf-8' ) as f :
16
+ with open (path .join (here , 'README.txt ' ), encoding = 'utf-8' ) as f :
17
17
long_description = f .read ()
18
18
19
- version = '1.4.7'
19
+ with open ('VERSION.md' , 'r' ) as f :
20
+ version = f .read ()
20
21
21
22
setup (
22
23
name = 'python-datemath' ,
57
58
58
59
# Specify the Python versions you support here. In particular, ensure
59
60
# that you indicate whether you support Python 2, Python 3 or both.
60
- 'Programming Language :: Python :: 2.6' ,
61
61
'Programming Language :: Python :: 2.7' ,
62
- 'Programming Language :: Python :: 3' ,
63
- 'Programming Language :: Python :: 3.2' ,
64
- 'Programming Language :: Python :: 3.3' ,
65
- 'Programming Language :: Python :: 3.4' ,
66
62
'Programming Language :: Python :: 3.5' ,
63
+ 'Programming Language :: Python :: 3.7'
67
64
],
68
65
69
66
# What does your project relate to?
You can’t perform that action at this time.
0 commit comments