File: setup.py

package info (click to toggle)
paramspider 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 316 kB
  • sloc: python: 168; sh: 20; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 576 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages

setup(
    name='paramspider',
    version='0.1.0',
    author='Devansh Batham',
    author_email='devanshbatham009@gmail.com',
    description='Mining parameters from dark corners of Web Archives',
    packages=find_packages(),
    install_requires=[
        'requests',
        'colorama'
    ],
    entry_points={
        'console_scripts': [
            'paramspider = paramspider.main:main'
        ]
    },
    license='MIT',
    long_description=open('README.md').read(),
    long_description_content_type='text/markdown'
)