Projects STRLCPY Maryam Commits 863384c0
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    requirements
    1  -requests
    2  -cloudscraper
    3  -bs4
    4  -lxml
    5  -flask
    6  -vaderSentiment
    7  -plotly
    8  -nltk
    9  -matplotlib
    10  -pandas
    11  -wordcloud
     1 +# Use trick from https://stackoverflow.com/questions/43658870/requirements-txt-vs-setup-py
     2 +-e .
    12 3   
  • ■ ■ ■ ■ ■ ■
    setup.py
    skipped 17 lines
    18 18   
    19 19  from setuptools import setup, find_packages
    20 20   
    21  -requirements_file = open('requirements', 'r')
    22  -requirements = requirements_file.readlines()
    23  -for i, line in enumerate(requirements):
    24  - requirements[i] = line.strip()
    25  - 
    26 21  setup(
    27 22   name='maryam',
    28 23   version='2.5.1-0',
    skipped 9 lines
    38 33   long_description_content_type='text/markdown',
    39 34   keywords=['OWASP', 'OSINT', 'search-engine', 'social-networks', 'Maryam'],
    40 35   scripts=['bin/maryam'],
    41  - install_requires=requirements,
     36 + install_requires=[
     37 + 'requests',
     38 + 'cloudscraper',
     39 + 'bs4',
     40 + 'lxml',
     41 + 'flask',
     42 + 'vaderSentiment',
     43 + 'plotly',
     44 + 'nltk',
     45 + 'matplotlib',
     46 + 'pandas',
     47 + 'wordcloud'
     48 + ],
    42 49   classifiers=[
    43 50   'Programming Language :: Python :: 3.10',
    44 51   'Development Status :: 5 - Production/Stable',
    skipped 7 lines
Please wait...
Page is in error, reload to recover