-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (31 loc) · 1.07 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
from setuptools import setup
setup(
name='addext',
version='2.0.1',
url='https://github.com/tw4l/addext',
author='Tim Walsh',
author_email='[email protected]',
packages=['addext'],
py_modules=['addext'],
scripts=['addext/addext.py'],
install_requires=['inquirer'],
description='Adds file extensions based on PRONOM ID',
keywords='extensions identification',
platforms=['POSIX', 'Windows'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System :: Filesystems',
'Topic :: Utilities'
],
)