-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (27 loc) · 905 Bytes
/
setup.py
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
26
27
28
29
30
31
32
33
34
import io
import setuptools
def readme():
with io.open('README.md', 'r', encoding='utf8') as f:
return f.read()
def requirements():
req = []
for line in open('requirements.txt', 'r'):
req.append(line.split()[0])
return req
setuptools.setup(
name='slack-request-permission',
version='1.0.6',
author="Prakhar Shrivastava",
author_email="[email protected]",
description="A python package that authenticates that the request is coming from slack",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/dev-prakhar/slack-request-permission",
packages=setuptools.find_packages(),
install_requires=requirements(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)