Skip to content

Commit c8aac16

Browse files
authored
Merge pull request #39 from HarshCasper/pypi-publish
Updated setup.py
2 parents c089035 + 4cca427 commit c8aac16

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
from setuptools import setup, find_packages
22

3-
# specify requirements of your package here
4-
REQUIREMENTS = ['BeautifulSoup4', 'requests', 'soupsieve', 'urllib3', 'six']
3+
with open('requirements.txt') as f:
4+
REQUIREMENTS = f.read().splitlines()
5+
with open('README.md', encoding='utf8') as f:
6+
README = f.read()
57

68
setup(
79
name='WebEdge',
@@ -10,6 +12,8 @@
1012
author='MLH Fellowship Team 1',
1113
author_email='erbeusgriffincasper@gmail.com',
1214
description='Bringing Edge to your Web Performance',
15+
long_description=README,
16+
long_description_content_type='text/markdown',
1317
url='https://github.com/HarshCasper/WebEdge',
1418
install_requires=REQUIREMENTS,
1519
packages=find_packages(exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]),

0 commit comments

Comments
 (0)