-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
49 lines (45 loc) · 1.71 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
import codecs
import sys
from setuptools import setup
VERSION = '1.4.1'
INSTALL_REQUIRES = []
TESTS_REQUIRE = [
'mock>=2.0.0' if sys.version_info.major == 2 else None,
]
with codecs.open('README.md', encoding='utf-8') as file:
README = file.read()
setup(name='see',
version=VERSION,
description='dir for humans',
long_description=README,
author='Liam Cooke',
author_email='see@liamcooke.com',
license='BSD License',
platforms=['any'],
url='https://ljcooke.github.io/see/',
packages=['see'],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
install_requires=list(filter(bool, INSTALL_REQUIRES)),
test_suite='tests',
tests_require=list(filter(bool, TESTS_REQUIRE)),
zip_safe=True,
keywords='see dir alternative inspect human readable pretty'.split(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Freely Distributable',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
])