-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (44 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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',
)