Skip to content

Commit

Permalink
Rel v0.1.0 alpha (#8)
Browse files Browse the repository at this point in the history
* Prepare for rel

* Prepare for rel

* Build whl file
  • Loading branch information
kajanan1212 committed Aug 13, 2023
1 parent 75d072f commit 39a42c4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ bld/
venv/
.DS_Store
.ipynb_checkpoints/
build/
gps2gtfs.egg-info/

# Visual Studio 2017 auto generated files
Generated\ Files/
Expand Down
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright 2023 AAIVU
Copyright 2023 Aaivu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Binary file added dist/gps2gtfs-0.1.0-py3-none-any.whl
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
build-backend = 'setuptools.build_meta'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
description-file = PACKAGE_DESCRIPTION.md
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
with open("PACKAGE_DESCRIPTION.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

classifiers = [
'Development Status :: 3 - Alpha',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only", # Specify Python 3 only
Expand All @@ -21,15 +21,15 @@
]

setup(
name='gps2gtfs',
name="gps2gtfs",
packages=find_packages(),
version='0.0.2-rc4',
description='A Python package to process raw GPS data of public transit and transform to GTFS format.',
version="0.1.0",
description="A Python package to process raw GPS data of public transit and transform to GTFS format.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/aaivu/gps2gtfs',
keywords=['GTFS', 'GPS', 'travel time', 'Public Transit', 'Heterogeneous traffic condition', 'ITS'],
author='AAIVU',
url="https://github.com/aaivu/gps2gtfs",
keywords=['GTFS', 'GPS', 'Travel Time', 'Public Transit', 'Heterogeneous Traffic Condition', 'ITS'],
author="Aaivu",
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
Expand All @@ -39,7 +39,7 @@
"Homepage": "https://github.com/aaivu/gps2gtfs",
"Source": "https://github.com/aaivu/gps2gtfs",
"Download": "https://pypi.org/project/gps2gtfs/",
"Documentation": "https://github.com/aaivu/gps2gtfs/blob/master/README.md",
"Documentation": "https://github.com/aaivu/gps2gtfs/blob/master/PACKAGE_DESCRIPTION.md",
"Bug Tracker": "https://github.com/aaivu/gps2gtfs/issues",
}
)

0 comments on commit 39a42c4

Please sign in to comment.