forked from d4interactive/nsfw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 855 Bytes
/
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
import os
from setuptools import setup
from nsfw import __version__
ROOT = os.path.dirname(os.path.realpath(__file__))
setup(
# Meta data
name='nsfw',
version=__version__,
author='Muhammad Azhar',
author_email='[email protected]',
maintainer='Muhammad Azhar',
maintainer_email='[email protected]',
url='https://contentstudio.io',
description='NSFW content analyzer',
long_description=open(os.path.join(ROOT, 'README.md')).read(),
license='MIT License',
# Package files
packages=[
'nsfw',
],
include_package_data=True,
# Dependencies
install_requires=[
'requests',
'lxml',
'nltk',
'pybloom_live',
],
extras_require={
'full': ['urllib3', 'certifi'],
},
test_suite='nose.collector',
tests_require=['nose'],
)