-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
28 lines (25 loc) · 843 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
#!/usr/bin/ev python3
from pathlib import Path
import setuptools
project_dir = Path(__file__).parent
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sync-ends",
version="1.0.0",
author="Adithya Ganesh, Meghana Vasist, Shivaprakash, Surbhi Jha, Varsha Sharma",
author_email="varsha95.ananth@gmail.com",
description="Extension to Slack",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["python"],
url="https://github.com/varsha5595/csc510-project",
packages=setuptools.find_packages(),
packages_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)