forked from stloma/freud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.46 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='freud',
version='0.1.3.dev0',
author='Stephen Martin',
author_email='lockwood@opperline.com',
description='TUI REST client to analyze API endpoints',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/stloma/freud',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='cli tui http rest request api',
packages=find_packages(),
install_requires=[
'requests==2.21.0',
'prompt_toolkit==2.0.7',
'pygments==2.7.4'
],
extras_require={
'dev': [
'flake8==3.6.0',
'pytest==4.1.0',
'pytest_asyncio==0.10.0',
'pytest_httpbin==0.3.0',
'tox==3.6.1'
]
},
entry_points={
'console_scripts': [
'freud=freud.__main__:main',
],
'pygments.styles': [
'freud=freud.ui:FreudStyle'
]
},
project_urls={
'Bug Reports': 'https://github.com/stloma/freud/issues',
'Source': 'https://github.com/stloma/freud',
},
)