-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·20 lines (19 loc) · 980 Bytes
/
setup.py
File metadata and controls
executable file
·20 lines (19 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'urlcounter',
packages = ['urlcounter'],
version = '0.0.3',
description = 'A set of functions that tally URLs within an event-based corpus. It assumes that you have data divided into a range of event-based periods with community-detected modules/hubs. It also assumes that you have unspooled and cleaned your URL data. See Deen Freelon\'s unspooler module for help: https://github.com/dfreelon/unspooler.',
author = 'Chris A. Lindgren',
author_email = 'chris.a.lindgren@gmail.com',
long_description=long_description,
long_description_content_type="text/markdown",
url = 'https://github.com/lingeringcode/urlcounter/',
download_url = 'https://github.com/lingeringcode/urlcounter/',
install_requires = ['pandas'],
keywords = ['data processing', 'summary analysis', 'URL', 'circulation studies'],
classifiers = [],
include_package_data=True
)