| Total Complexity | 0 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | #!/usr/bin/python |
||
| 2 | # -*- coding: utf-8 -*- |
||
| 3 | |||
| 4 | import os |
||
| 5 | |||
| 6 | from setuptools import setup, find_packages |
||
| 7 | |||
| 8 | current_directory = os.path.abspath(os.path.dirname(__file__)) |
||
| 9 | |||
| 10 | about = {} |
||
| 11 | with open(os.path.join(current_directory, 'titlesearch', '__version__.py'), 'r') as f: |
||
| 12 | exec(f.read(), about) |
||
| 13 | |||
| 14 | setup(name=about['__title__'], |
||
| 15 | version=about['__version__'], |
||
| 16 | description=about['__description__'], |
||
| 17 | url=about['__url__'], |
||
| 18 | author=about['__author__'], |
||
| 19 | author_email=about['__author_email__'], |
||
| 20 | license=about['__license__'], |
||
| 21 | packages=find_packages(), |
||
| 22 | install_requires=[ |
||
| 23 | 'bs4>=0.0.1', |
||
| 24 | 'numpy>=1.14.2', |
||
| 25 | 'jellyfish>=0.5.6', |
||
| 26 | 'requests>=2.18.4', |
||
| 27 | 'html5lib>=1.0.1' |
||
| 28 | ], |
||
| 29 | extras_require={ |
||
| 30 | 'unittests': [ |
||
| 31 | ] |
||
| 32 | }, |
||
| 33 | zip_safe=True) |
||
| 34 |