-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 771 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
# encoding: utf-8
"""pyBookkeeping implements misc functionality to access bookkeeping systems,
most prominentely xero.com.
"""
from setuptools import setup, find_packages
import codecs
setup(name='pyBookkeeping',
maintainer='Maximillian Dornseif',
maintainer_email='md@hudora.de',
version='1.0p2',
description='Buchhaltungsfunktionen',
long_description=codecs.open('README.rst', "r", "utf-8").read(),
classifiers=['License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python'],
packages=find_packages(),
include_package_data=True,
install_requires=['gdata', 'oauth2', 'cs>=0.11', 'tlslite', 'huSoftM'],
)