mirror of
https://github.com/nikdoof/pynab.git
synced 2025-12-17 20:49:21 +00:00
Initial commit
This commit is contained in:
43
setup.py
Normal file
43
setup.py
Normal file
@@ -0,0 +1,43 @@
|
||||
from __future__ import print_function
|
||||
from setuptools import setup
|
||||
import io
|
||||
import os
|
||||
|
||||
import pynab
|
||||
|
||||
here = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
def read(*filenames, **kwargs):
|
||||
encoding = kwargs.get('encoding', 'utf-8')
|
||||
sep = kwargs.get('sep', '\n')
|
||||
buf = []
|
||||
for filename in filenames:
|
||||
with io.open(filename, encoding=encoding) as f:
|
||||
buf.append(f.read())
|
||||
return sep.join(buf)
|
||||
|
||||
long_description = read('README.md')
|
||||
|
||||
|
||||
setup(
|
||||
name='pynab',
|
||||
version=pynab.__version__,
|
||||
url='http://github.com/nikdoof/pynab/',
|
||||
license='BSD',
|
||||
author='Andrew Williams',
|
||||
author_email='andy@tensixtyone.com',
|
||||
description='YNAB4 budget parser for Python',
|
||||
long_description=long_description,
|
||||
packages=['pynab'],
|
||||
platforms='any',
|
||||
classifiers = [
|
||||
'Programming Language :: Python',
|
||||
'rogramming Language :: Python :: 3',
|
||||
'Development Status :: 2 - Pre-Alpha',
|
||||
'Natural Language :: English',
|
||||
'Intended Audience :: Developers',
|
||||
'icense :: OSI Approved :: BSD License',
|
||||
'Operating System :: OS Independent',
|
||||
'Topic :: Software Development :: Libraries :: Python Modules',
|
||||
],
|
||||
)
|
||||
Reference in New Issue
Block a user