Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ccan23 committed Feb 11, 2025
1 parent 8a65acf commit 63d5637
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
from setuptools import setup, find_packages
import os

here = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(here, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read()

with open('requirements.txt') as f:
install_requires = f.read().splitlines()

VERSION = '1.0.0'

setup(
name='rugcheck',
version=VERSION,
description='Python wrapper for RugCheck API',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ccan23/rugcheck',
author='ccan23',
author_email='dev.ccanb@protonmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
extras_require={
'dev': [
'pytest',
'twine',
'build',
'rich',
'wheel',
]
},
entry_points={
'console_scripts': [
'rugcheck=rugcheck.cli:rugcheck_cli',
],
},
keywords=['python', 'rugcheck', 'crypto', 'scam-detection', 'dex', 'liquidity', 'rugpull', 'scam'],
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
)

0 comments on commit 63d5637

Please sign in to comment.