-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (38 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
37
38
39
40
41
42
from os import path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Get the long description from the README file
with open(path.join(path.abspath(path.dirname(__file__)), 'README.rst')) as f:
long_description = f.read()
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Console',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing :: General',
]
setup(
name='validocx',
version='0.0.1',
description='An implementation of MS Word docx-file content validator',
long_description=long_description,
url='https://github.com/tivaliy/docx-validator',
author='Vitalii Kulanov',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords='MS-Word docx validator',
packages=['validocx'],
entry_points={
'console_scripts': [
'validocx = validocx.cli:main',
],
},
)