-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 891 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 891 Bytes
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
from setuptools import setup, find_packages
setup(
name='nyt_assignment',
version='0.1',
packages=find_packages(),
install_requires=[
# List your dependencies here
'requests',
'matplotlib',
'pyyaml',
'pandas',
'wordcloud'
],
entry_points={
'console_scripts': [
'nyt_assignment = nyt_assignment.nyt_assignment:main',
],
},
author='Andre Delaney',
author_email='andre.delaney@gmail.com',
description='Package for analysis of NYT articles',
long_description='Package for analysis of NYT articles. Calculates mean of word count nad produces a plot',
url='https://github.com/ASDelaney/nyt_assignment',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)