forked from pythonpune/readit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 920 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
35
from setuptools import setup, find_packages
with open("README.rst") as readme_file:
long_description = readme_file.read()
install_requires = [
'setuptools',
'requests',
'click',
'beautifultable',
]
setup(
name="readit",
packages=find_packages(),
entry_points={
'console_scripts': [
'readit = readit.__init__:main',
],
},
version="v0.2",
author="Ganesh, Shital, Daivshala",
author_email="[email protected]",
description="Readit - Command Line Bookmark Manager Tool",
long_description=long_description,
license="GNU General Public License v3.0",
keywords="clitool bookmark readit",
url="https://github.com/projectreadit/readit",
py_modules=['readit.__init__'],
namespace_packages=[],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
scripts=['test_readit.py'],
)