-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 739 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 739 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
from setuptools import setup
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()
setup(
name='IntelliType',
version='0.4.2',
packages=['IntelliType'],
url='https://github.com/pmqtt/IntelliType',
license='Apache 2',
author='michael burzan',
author_email='',
description='The goal of IntelliType is to help you automate text-based processes',
install_requires=['keyboard', 'pyyaml'],
entry_points={
'console_scripts': [
'itt=IntelliType:run',
],
},
long_description=long_description,
long_description_content_type='text/markdown'
)