-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
PSV | ||
---- | ||
|
||
PSV is a library that allows rapid script development for csv files. This library allows pythonic manipulation of csv (or csv like structures). | ||
|
||
This is not a data analysis library rather a data manipulation one, and it is meant to be as light as possbile. For these usecases, consider Pandas. Additionally, CSV files should not be used as any sort of flat file database and this library doesn't actively support that usecase. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
#!/usr/bin/env python | ||
""" | ||
Copyright (c) 2016, 2017, 2018 Joshua Walters | ||
Copyright (c) 2016-2019 Joshua W | ||
""" | ||
|
||
from os import path | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'readmeshort.md'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
version = '0.2.1' | ||
|
||
version = '0.3.0' | ||
|
||
from setuptools import setup | ||
setup(name='psv', | ||
install_requires=["tabulate==0.8.2"], | ||
install_requires=["tabulate==0.8.3"], | ||
version=version, | ||
description='CSV Parser', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown' | ||
author='Joshua W', | ||
author_email='[email protected]', | ||
url='https://github.com/Dolphman/PSV', | ||
url='https://github.com/DolphDev/PSV', | ||
packages=['psv', 'psv.core', 'psv.core.objects', 'psv.core.parsing', 'psv.core.output', "psv.core.utils", "psv.core.exceptions"], | ||
package_data={'': ['LICENSE.txt', "readme.md"]}, | ||
keywords=['csv', "Comma Separated Values", "Python Separated Values", "psv"], | ||
|