-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 1.03 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name='pyvies',
version='0.1',
description='A quick Python API for the VIES VAT number validation',
author='Christian Joergensen',
author_email='[email protected]',
url='https://bitbucket.org/chrj/pyvies',
py_modules=["pyvies"],
install_requires=file("requirements.txt").read(),
entry_points={
"console_scripts": [
"vies = pyvies:main",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Database :: Front-Ends",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
)