Feluda


NameFeluda JSON
Version 0.0.6 PyPI version JSON
download
home_page
Summaryfeluda
upload_time2024-01-25 15:14:26
maintainer
docs_urlNone
authorSoumyajit Pan
requires_python
license
keywords excel excelreader excelwriter python excel reader and writer read excel data using python write data in excel using python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Feluda Package

This is a tutorial project for publishing your own python library on PyPi.

## Requirments

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install all the requirements.
Just follow the commands below:

Upgrade Setuptoos:
```bash
python -m pip install --upgrade twine setuptools
```

Install Wheel:
```bash
pip install wheel
```

Make a build for your Library/Package:
```bash
python setup.py sdist bdist_wheel
```

Install twine:
```bash
pip install twine
```

Upload Your Library:
```bash
twine upload dist/*
```

If the above command fail to upload:
```bash
python -m twine upload dist/*
```



If you want to upload through Git repo,
Add this code after import statements
```python
here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
    long_description = "\n" + fh.read()
```
After add this code you have to add an Readme.md file and the just follow the commands above.



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "Feluda",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "excel,excelreader,excelwriter,python,excel reader and writer,read excel data using python,write data in excel using python",
    "author": "Soumyajit Pan",
    "author_email": "soumyajitpan29@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/0b/d1/89a896289eeebed1ecee56c90550fc64900b012083b7e354a88a29bc2fe6/Feluda-0.0.6.tar.gz",
    "platform": null,
    "description": "\n# Feluda Package\n\nThis is a tutorial project for publishing your own python library on PyPi.\n\n## Requirments\n\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install all the requirements.\nJust follow the commands below:\n\nUpgrade Setuptoos:\n```bash\npython -m pip install --upgrade twine setuptools\n```\n\nInstall Wheel:\n```bash\npip install wheel\n```\n\nMake a build for your Library/Package:\n```bash\npython setup.py sdist bdist_wheel\n```\n\nInstall twine:\n```bash\npip install twine\n```\n\nUpload Your Library:\n```bash\ntwine upload dist/*\n```\n\nIf the above command fail to upload:\n```bash\npython -m twine upload dist/*\n```\n\n\n\nIf you want to upload through Git repo,\nAdd this code after import statements\n```python\nhere = os.path.abspath(os.path.dirname(__file__))\n\nwith codecs.open(os.path.join(here, \"README.md\"), encoding=\"utf-8\") as fh:\n    long_description = \"\\n\" + fh.read()\n```\nAfter add this code you have to add an Readme.md file and the just follow the commands above.\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "feluda",
    "version": "0.0.6",
    "project_urls": null,
    "split_keywords": [
        "excel",
        "excelreader",
        "excelwriter",
        "python",
        "excel reader and writer",
        "read excel data using python",
        "write data in excel using python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bd189a896289eeebed1ecee56c90550fc64900b012083b7e354a88a29bc2fe6",
                "md5": "b80d4997156fc0452e150f3f792ce562",
                "sha256": "eb061929d94a96c524a2c2fd43922818195f67cd77da6a5337aab445aac6f6d4"
            },
            "downloads": -1,
            "filename": "Feluda-0.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "b80d4997156fc0452e150f3f792ce562",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2676,
            "upload_time": "2024-01-25T15:14:26",
            "upload_time_iso_8601": "2024-01-25T15:14:26.238906Z",
            "url": "https://files.pythonhosted.org/packages/0b/d1/89a896289eeebed1ecee56c90550fc64900b012083b7e354a88a29bc2fe6/Feluda-0.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-25 15:14:26",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "feluda"
}
        
Elapsed time: 0.17562s