-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (33 loc) · 1.34 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
import os
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
about = {}
with open(os.path.join(this_directory, 'ScanWatch/__init__.py'), encoding='utf-8') as f:
exec(f.read(), about)
with open("requirements.txt") as file:
requirements_content = file.read()
requirements = requirements_content.split('\n')
setup(
name='ScanWatch',
version=about['__version__'],
packages=['ScanWatch', 'ScanWatch.storage', 'ScanWatch.utils'],
url='https://github.com/EtWnn/ScanWatch',
author='EtWnn',
author_email='EtWnn0x@gmail.com',
license='MIT',
description='Local tracker for address on Ethereum, BSC and Polygon chains',
long_description=long_description,
long_description_content_type='text/x-rst',
install_requires=requirements,
keywords='eth bsc polygon wallet save tracking history ethereum matic bnb tracker binance smartchain smart chain',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)