This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
47 lines (41 loc) · 1.84 KB
/
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
38
39
40
41
42
43
44
45
46
47
from setuptools import setup
with open("README.rst", "r") as fh:
long_desc = fh.read()
setup(
name='factiva-pipelines',
version='0.0.1',
description='Python package with tools to help transforming Snapshots and Streams data.',
long_description=long_desc,
long_description_content_type='text/x-rst',
author='Miguel Ballesteros',
author_email='miguel.ballesteros@dowjones.com',
# Warning: the folder 'factiva' should NOT have an __init__.py file to avoid conflicts with the same namespace across other packages
package_dir={'': 'src'},
packages=['factiva.pipelines', 'factiva.pipelines.const', 'factiva.pipelines.snapshot_files', 'factiva.pipelines.metadata'],
package_data={'': ['*.csv']},
url='https://github.com/dowjones/factiva-pipelines-python',
classifiers=[ # Optional
# How mature is this project? Common values are
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Operating System :: OS Independent',
'Topic :: Office/Business :: News/Diary',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='news, news aggregator, risk, compliance, nlp, alternative data',
python_requires='>=3.5',
install_requires=['pandas', 'numpy', 'fastavro', 'textblob']
)