File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
- from index_generator import APP_NAME , APP_URL , APP_VERSION , PACKAGE_NAME
2
+ from index_generator import APP_URL , APP_VERSION , PACKAGE_NAME
3
3
4
4
with open ("README.md" , "r" ) as fh :
5
- long_description = fh .read ()
5
+ LONG_DESC = fh .read ()
6
6
7
7
with open ('requirements.txt' ) as f :
8
- requirements = [l for l in f .read ().splitlines () if l ]
8
+ REQUIREMENTS = [l for l in f .read ().splitlines () if l ]
9
9
10
10
setup (
11
11
name = PACKAGE_NAME ,
23
23
author = 'Bruce Zhang, Edward P' ,
24
24
author_email = '' ,
25
25
description = 'Yet another index generator.' ,
26
- long_description = long_description ,
26
+ long_description = LONG_DESC ,
27
27
long_description_content_type = "text/markdown" ,
28
28
keywords = ['index' , 'listing' , 'directory' ],
29
- install_requires = requirements ,
29
+ install_requires = REQUIREMENTS ,
30
30
tests_require = ['pytest' ],
31
31
entry_points = {
32
32
'console_scripts' : [
You can’t perform that action at this time.
0 commit comments