-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.13 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
# setup.py
from setuptools import setup
import setuptools
import shutil
import os
from src import __version__
def readme():
return "StickyNotes"
def get_dependencies():
with open("requirements.txt") as req:
lines = req.readlines()
lines = [line.strip() for line in lines]
return lines
setup(name='stickynotes',
version=__version__,
description='Tool to track, extract and generate mark down files from Todos present in code repositories.',
long_description=readme(),
classifiers=[
'Development Status :: ' + __version__,
'License :: Apache License 2.0',
'Programming Language :: Python :: 3.5',
'Automation :: Documentation :: VCS',
],
keywords='Automation Documentation VCS',
url='https://github.com/akshatgit/Sticky-Notes',
author='Akshat Sinha, Deepjyoti Mondal, Harsh',
license='Apache License 2.0',
packages=setuptools.find_packages(),
install_requires=get_dependencies(),
entry_points={
'console_scripts': ['stickynotes=src.driver.driver:drive'],
},
include_package_data=True,
zip_safe=False)