-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.3 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.3 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
import setuptools
from setuptools.command.build_py import build_py
from setuptools.command.install import install
import subprocess
import os
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(name='pyconvcli',
version='0.0.6',
description='A convention based CLI framework for python',
author='Joshua Lepinski',
author_email='joshualepinski@gmail.com',
url='https://github.com/jlepinski/pyconvcli',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
],
packages=setuptools.find_packages(),
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'pydash==4.9.0',
'stringcase==1.2.0'
],
entry_points={
'console_scripts': [
'pyconvcli = pyconvcli_internal_cli.cli:main',
'pyconvcli-app = pyconvcli_internal_cli.cli:visualize',
'pyconvcli-test = test_pyconvcli_internal_cli.cli:main',
'pyconvcli-test-app = test_pyconvcli_internal_cli.cli:visualize'
],
}
)