-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 811 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
import fastentrypoints
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
setup(
name='this-cli',
version='0.3',
description='Standardized project tool for running common tasks',
long_description=long_description,
long_description_content_type='text/markdown',
author='Michael Spencer',
author_email='[email protected]',
url='https://github.com/ibelieve/this',
license='MIT',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=[
'Click',
],
setup_requires=[
'setuptools>=38.6.0',
'pytest-runner'
],
tests_require=['pytest', 'pytest-mock'],
entry_points='''
[console_scripts]
this=thiscli:cli
''',
)