-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1.02 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
from setuptools import setup, find_packages
install_requirements=[
'device-detector',
'geoip2',
'mysqlclient',
'requests',
'reverse_geocoder',
'sqlalchemy',
'scielo_log_validator',
'wget',
]
setup(
name='scielo-usage-counter',
version='0.6.0',
description='The SciELO Usage Counter Tool',
author='SciELO',
author_email='scielo-dev@googlegroups.com',
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
init-db=scielo_usage_counter.proc.initialize_database:main
parse-log=scielo_usage_counter.proc.parse_log:main
gen-pretable=scielo_usage_counter.proc.generate_pretable:main
"""
)