forked from varsha5595/csc510-project
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
45 lines (38 loc) · 1.32 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/ev python3
from pathlib import Path
import setuptools
project_dir = Path(__file__).parent
def get_requirements(filename):
with open(filename) as f:
requirements = f.read().splitlines()
return requirements
def get_long_description(filename):
with open(filename, "r") as fh:
long_description = fh.read()
return long_description
setuptools.setup(
name="sync-ends",
version="v2.1.3",
author="Chintan Gandhi, Jay Modi, Suraj Patel, Omkar Kulkarni, Nirav Shah",
author_email="[email protected]",
description="Sync Ends - End Development Overheads CSC 510 Project",
long_description=get_long_description("README.md"),
long_description_content_type="text/markdown",
keywords=["python"],
url="https://github.com/jaymodi98/csc510-project",
download_url='https://github.com/jaymodi98/Sync-Ends/archive/v2.1.3.tar.gz', # noqa: E501
entry_points="""
[console_scripts]
syncends = src.main:main
""",
packages=setuptools.find_packages(),
packages_dir={"": "src"},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=get_requirements("requirements.txt"),
include_package_data=True,
python_requires=">=3.6",
)