-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
2790394
commit debbb79
Showing
3 changed files
with
32 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,25 +10,25 @@ | |
long_description = f.read() | ||
|
||
setup( | ||
name='random-access-file-reader', | ||
name='FileSampler', | ||
|
||
# Versions should comply with PEP440. For a discussion on single-sourcing | ||
# the version across setup.py and the project code, see | ||
# https://packaging.python.org/en/latest/single_source_version.html | ||
version='0.3.0', | ||
version='0.0.0' | ||
|
||
description='A python random access file reader', | ||
description='light weight sampler package for data files', | ||
long_description=long_description, | ||
|
||
# The project's main homepage. | ||
url='https://github.com/jegesh/python-random-access-file-reader', | ||
url='https://github.com/carvetighter/FileSampler', | ||
|
||
# Author details | ||
author='Yaakov Gesher', | ||
author_email='[email protected]', | ||
author='Brent Allen', | ||
author_email='[email protected]', | ||
|
||
# Choose your license | ||
license='Apache Software License', | ||
license='MIT', | ||
|
||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
|
@@ -43,16 +43,15 @@ | |
'Topic :: Software Development :: Libraries', | ||
|
||
# Pick your license as you wish (should match "license" above) | ||
'License :: OSI Approved :: Apache Software License', | ||
'License :: OSI Approved :: MIT License', | ||
|
||
# Specify the Python versions you support here. In particular, ensure | ||
# that you indicate whether you support Python 2, Python 3 or both. | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
|
||
# You can just specify the packages manually here if your project is | ||
# simple. Or you can use find_packages(). | ||
packages=['randomAccessReader'], | ||
# packages=['<package name>'], | ||
|
||
) |