-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
42 lines (35 loc) · 1.07 KB
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
import os
from setuptools import setup, find_packages
with open("README.md", "r", encoding = "utf-8") as fh:
long_description = fh.read()
def get_version():
if not os.path.exists("VERSION"):
raise FileNotFoundError("Version file does not exist")
with open("VERSION", "r") as f:
version = f.read()
return version
setup(
name='wbck',
version=get_version(),
author="Arpit Goyal",
author_email="arpitgoyal.iitkgp@outlook.com",
description="a command line utility to perform workspace backup",
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/argoyal/wbck.git",
packages=find_packages(),
install_requires=[
'boto3'
],
entry_points={
'console_scripts': [
'wbck = wbck:cli',
]
},
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
)