forked from laike9m/pdir2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.21 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
import codecs
from setuptools import setup
readme = codecs.open('docs/README.rst', encoding='utf-8').read()
history = codecs.open('docs/HISTORY.rst', encoding='utf-8').read()
setup(
name='pdir2',
version='0.2.0',
description='Pretty dir printing with joy',
long_description=u'\n\n'.join([readme, history]),
author='laike9m',
author_email='[email protected]',
url='http://github.com/laike9m/pdir2',
packages=[
'pdir',
],
install_requires=[
'colorama;platform_system=="Windows"',
'enum34;python_version<"3.4"',
],
include_package_data=True,
license='MIT License',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: CPython',
], )