forked from Zarad1993/dyc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 736 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 736 Bytes
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name="document-your-code",
version="0.2.3",
author="Mohammad Albakri",
author_email="mohammad.albakri93@gmail.com",
packages=find_packages(),
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Zarad1993/dyc",
install_requires=[
"click==7.0",
"pyyaml>=4.2b1",
"gitpython>=2.1.11",
"gitdb2;python_version>'3.4'",
"watchdog==0.9.0",
"pre-commit==1.18.1",
],
entry_points={"console_scripts": ["dyc=dyc.dyc:main"]},
package_data={'': ['*.yaml']},
)