-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 914 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 914 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
31
from setuptools import setup, find_packages
install_requirements=[
'device-detector',
'geoip2',
'requests',
'reverse_geocoder',
'scielo_log_validator',
'scielo_scholarly_data',
'wget',
]
setup(
name='scielo-usage-counter',
version='2.0.0',
description='The SciELO Usage Counter Tool',
author='Rafael JP Damaceno',
author_email='rafael@pitangainnovare.com.br',
license='BSD',
install_requires=install_requirements,
url='https://github.com/scieloorg/scielo_usage_counter',
keywords='usage access, project counter r5, sushi',
maintainer_email='rafael.pezzuto@gmail.com',
packages=find_packages(),
entry_points="""
[console_scripts]
dl-geomap=scielo_usage_counter.proc.download_geomap:main
dl-robots=scielo_usage_counter.proc.download_robots:main
parse-log=scielo_usage_counter.proc.parse_log:main
"""
)