Skip to content

Commit ffbf4b7

Browse files
update setuppy
1 parent 537217a commit ffbf4b7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
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
33

44
with open("README.md", "r") as fh:
5-
long_description = fh.read()
5+
LONG_DESC = fh.read()
66

77
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]
99

1010
setup(
1111
name=PACKAGE_NAME,
@@ -23,10 +23,10 @@
2323
author='Bruce Zhang, Edward P',
2424
author_email='',
2525
description='Yet another index generator.',
26-
long_description=long_description,
26+
long_description=LONG_DESC,
2727
long_description_content_type="text/markdown",
2828
keywords=['index', 'listing', 'directory'],
29-
install_requires=requirements,
29+
install_requires=REQUIREMENTS,
3030
tests_require=['pytest'],
3131
entry_points={
3232
'console_scripts': [

0 commit comments

Comments
 (0)