-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.37 KB
/
setup.py
File metadata and controls
42 lines (40 loc) · 1.37 KB
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
39
40
41
42
from __future__ import print_function
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import io
import codecs
import os
import sys
import contentscoring
#
# def readme():
# with open('README.md') as f:
# return f.read()
setup(
name='contentscoring',
version=contentscoring.__version__,
url='https://github.com/rh-marketingops/contentscoring',
license='GNU General Public License',
author='Pramod Toraskar',
tests_require=['nose', 'mongomock>=3.5.0'],
install_requires=['pymongo>=3.2.2'],
author_email='pramod.torskar@gmail.com',
description='Best practices for marketing data quality management',
#long_description=readme(),
packages=['contentscoring'],
include_package_data=True,
platforms='any',
test_suite = 'nose.collector',
classifiers = [
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
keywords = 'marketing automation conent scoring'
)