forked from wbond/vat_moss-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (22 loc) · 823 Bytes
/
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
from setuptools import setup, find_packages
import vat_moss
setup(
name='vat_moss',
version=vat_moss.__version__,
description='Tools for VAT MOSS and Norway VAT on digital services.',
long_description='Docs for this project are maintained at https://github.com/wbond/vat_moss-python#readme.',
url='https://github.com/wbond/vat_moss-python',
author='wbond',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='vat',
packages=find_packages(exclude=['tests*'])
)