-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 769 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
with open('requirements.txt') as f:
REQUIREMENTS = f.read().splitlines()
with open('README.md', encoding='utf8') as f:
README = f.read()
setup(
name='WebEdge',
version='1.0.2',
license='MIT License',
author='MLH Fellowship Team 1',
author_email='erbeusgriffincasper@gmail.com',
description='Bringing Edge to your Web Performance',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/HarshCasper/WebEdge',
install_requires=REQUIREMENTS,
packages=find_packages(exclude = ["*.tests", "*.tests.*", "tests.*", "tests"]),
entry_points={
'console_scripts': [
'webedge = webedge.webedge:main'
]
}
)