Skip to content

Commit

Permalink
new
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed May 30, 2022
1 parent c82b870 commit b3beba3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 28 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
# gellany_plots
# gellany_plots
'''
https://github.com/gellanyhassan0/gellany_plots
'''
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
numpy
pandas
sys
matplotlib
argparse
37 changes: 11 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,14 @@
import setuptools

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requirements.txt','r') as fr:
requires = fr.read().split('\n')
from setuptools import setup, find_packages

setuptools.setup(
name="gellany_plots",
version=__version__,
author="Elgilany Hassan",
author_email="gellanyhassan0@gmail.com",
description="hybrid plots analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gellanyhassan0/gellany_plots",
project_urls={
"Bug Tracker": "https://github.com/gellanyhassan0/gellany_plots/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL V3 License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6",
install_requires=requires,

setup(
name='gellany_plots',
version='0.0.1',
packages=find_packages(include=['gellany_plots', 'gellany_plots.*']),
install_requires=[
'pandas',
'numpy',
'matplotlib',
]
)

0 comments on commit b3beba3

Please sign in to comment.