This repository was archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.33 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.33 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
from setuptools import find_packages, setup
setup(
name='blessedblocks',
packages=find_packages(),
version='0.0.9',
description='Display a terminal window in blocks using the blessed module.',
author='Mark Libucha',
author_email='mlibucha@gmail.com',
url='http://nowhere.click',
license='Apache 2.0',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite='test',
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'
],
install_requires=[
"blessed>=1.15.0, <2.0.0",
"six>=1.11.0, <2.0.0",
"tabulate>=0.8.2, <2.0.0",
"wcwidth>=0.1.7, <2.0.0",
"atomicwrites>=1.1.5, <2.0.0",
"attrs>=18.1.0, < 19.0.0",
"more-itertools>=4.2.0, <5.0.0",
"pluggy>=0.6.0, < 1.0.0",
"py>=1.5.3, <2.0.0",
"pytest>=3.6.0, <4.0.0"
]
)