diff --git a/.gitignore b/.gitignore index b10d57e..14a1c73 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,8 @@ bld/ venv/ .DS_Store .ipynb_checkpoints/ +build/ +gps2gtfs.egg-info/ # Visual Studio 2017 auto generated files Generated\ Files/ diff --git a/LICENSE b/LICENSE index 480c287..5cbd191 100644 --- a/LICENSE +++ b/LICENSE @@ -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. \ No newline at end of file +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. diff --git a/dist/gps2gtfs-0.1.0-py3-none-any.whl b/dist/gps2gtfs-0.1.0-py3-none-any.whl new file mode 100644 index 0000000..9e96603 Binary files /dev/null and b/dist/gps2gtfs-0.1.0-py3-none-any.whl differ diff --git a/pyproject.toml b/pyproject.toml index fcff509..f1bfca4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] requires = ['setuptools>=42'] -build-backend = 'setuptools.build_meta' \ No newline at end of file +build-backend = 'setuptools.build_meta' diff --git a/setup.cfg b/setup.cfg index 9d5f797..e51d3f1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,3 +1,3 @@ # Inside of setup.cfg [metadata] -description-file = README.md \ No newline at end of file +description-file = PACKAGE_DESCRIPTION.md diff --git a/setup.py b/setup.py index d6abcc5..9974380 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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='helloaaivu@gmail.com', license='MIT', classifiers=classifiers, @@ -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", } )