-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 756 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
26
27
from setuptools import setup
setup(
name='deving',
packages=[
'deving',
],
version='0.1.0',
description='Some dev tools',
author='Oren',
author_email='orenovad@gmail.com',
url='https://github.com/orenovadia/deving',
install_requires=[
req.strip()
for req in open('requirements.txt')
],
entry_points={
'console_scripts': [
'dev-main = deving.main:main',
'dev-tracebacks = deving.main:find_exceptions',
'dev-histogram = deving.main:histogram',
'dev-urlencode = deving.main:encode_parameters',
'dev-counts = deving.line_counts:counts',
'dev-pstats-merge = deving.pstats_merge:pstats_merge',
],
}
)