Reset repo to respect .gitignore
This commit is contained in:
BIN
Package/Python/dist/bellande_format-0.1.1.tar.gz
vendored
BIN
Package/Python/dist/bellande_format-0.1.1.tar.gz
vendored
Binary file not shown.
@@ -1,2 +0,0 @@
|
||||
python setup.py sdist
|
||||
twine upload dist/*
|
@@ -1,40 +0,0 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(
|
||||
name="bellande_format",
|
||||
version="0.1.1",
|
||||
description="Bellande Format is a file format type",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
author="RonaldsonBellande",
|
||||
author_email="ronaldsonbellande@gmail.com",
|
||||
packages=find_packages(where="src"),
|
||||
package_dir={"": "src"},
|
||||
include_package_data=True,
|
||||
install_requires=[
|
||||
"numpy",
|
||||
],
|
||||
classifiers=[
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Programming Language :: Python",
|
||||
],
|
||||
keywords=["package", "setuptools"],
|
||||
python_requires=">=3.0",
|
||||
extras_require={
|
||||
"dev": ["pytest", "pytest-cov[all]", "mypy", "black"],
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'Bellande_Format = bellande_parser:Bellande_Format',
|
||||
],
|
||||
},
|
||||
project_urls={
|
||||
"Home": "https://github.com/RonaldsonBellande/bellande_format",
|
||||
"Homepage": "https://github.com/RonaldsonBellande/bellande_format",
|
||||
"documentation": "https://github.com/RonaldsonBellande/bellande_format",
|
||||
"repository": "https://github.com/RonaldsonBellande/bellande_format",
|
||||
},
|
||||
)
|
2
Package/Rust/.gitignore
vendored
Normal file
2
Package/Rust/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
publish.sh
|
||||
src/Cargo.toml
|
@@ -1,2 +0,0 @@
|
||||
cargo package
|
||||
cargo publish
|
@@ -1,13 +0,0 @@
|
||||
[package]
|
||||
name = "bellande_parser"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
authors = ["Ronaldson Bellande ronaldsonbellande@gmail.com"]
|
||||
description = "Bellande File Format"
|
||||
license = "GNU"
|
||||
|
||||
[lib]
|
||||
path = "bellande_parser.rs"
|
||||
|
||||
[dependencies]
|
||||
std = { version = "1.65", features = ["collections", "fs", "path"] }
|
Reference in New Issue
Block a user