Skip to content

Commit

Permalink
add: initial release of the package
Browse files Browse the repository at this point in the history
  • Loading branch information
vijay-jaisankar committed Apr 24, 2022
1 parent dd80d9c commit a3d9017
Show file tree
Hide file tree
Showing 8 changed files with 66 additions and 0 deletions.
Binary file added dist/trafficinterventions-0.0.1-py3-none-any.whl
Binary file not shown.
Binary file added dist/trafficinterventions-0.0.1.tar.gz
Binary file not shown.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
24 changes: 24 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[metadata]
name = trafficinterventions
version = 0.0.1
author = WSL, IIITB
author_email = vijay.jaisankar@iiitb.ac.in
description = Python Package to perform simple Traffic Interventions.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/WSL-IIITB/Traffic-Interventions
project_urls =
Bug Tracker = https://github.com/WSL-IIITB/Traffic-Interventions/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= src
packages = find:
python_requires = >=3.6

[options.packages.find]
where = src
23 changes: 23 additions & 0 deletions src/trafficinterventions.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Metadata-Version: 2.1
Name: trafficinterventions
Version: 0.0.1
Summary: Python Package to perform simple Traffic Interventions.
Home-page: https://github.com/WSL-IIITB/Traffic-Interventions
Author: WSL, IIITB
Author-email: vijay.jaisankar@iiitb.ac.in
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/WSL-IIITB/Traffic-Interventions/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Traffic-Interventions

## Installation
- `python -m pip install --upgrade pip`


11 changes: 11 additions & 0 deletions src/trafficinterventions.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
LICENSE
README.md
pyproject.toml
setup.cfg
src/trafficinterventions/ChangeEdges.py
src/trafficinterventions/ChangeLanes.py
src/trafficinterventions/__init__.py
src/trafficinterventions.egg-info/PKG-INFO
src/trafficinterventions.egg-info/SOURCES.txt
src/trafficinterventions.egg-info/dependency_links.txt
src/trafficinterventions.egg-info/top_level.txt
1 change: 1 addition & 0 deletions src/trafficinterventions.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions src/trafficinterventions.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
trafficinterventions

0 comments on commit a3d9017

Please sign in to comment.