# 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": "FeluMittir",
"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/da/9c/8e959104c384a1f443ba6eb07d9b879beafa493f29828cc12539ae0f1ad9/FeluMittir-0.0.3.tar.gz",
"platform": null,
"description": "# 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.3",
"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": "da9c8e959104c384a1f443ba6eb07d9b879beafa493f29828cc12539ae0f1ad9",
"md5": "dea0597f7f2d33b534e360b49acc88b5",
"sha256": "15fc6cf00de211a875e3b6da1833a85d74ed37cc2c95b5b07ca68ce79866a5a3"
},
"downloads": -1,
"filename": "FeluMittir-0.0.3.tar.gz",
"has_sig": false,
"md5_digest": "dea0597f7f2d33b534e360b49acc88b5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2727,
"upload_time": "2024-01-25T07:42:39",
"upload_time_iso_8601": "2024-01-25T07:42:39.354626Z",
"url": "https://files.pythonhosted.org/packages/da/9c/8e959104c384a1f443ba6eb07d9b879beafa493f29828cc12539ae0f1ad9/FeluMittir-0.0.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-01-25 07:42:39",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "felumittir"
}