-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
44 lines (40 loc) · 1.28 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md', encoding="utf-8") as readme_file:
readme = readme_file.read()
with open("requirements.txt", encoding ="utf-8") as f:
requirements = [req.strip() for req in f.readlines()]
setup(
name='series-tiempo-ar-scraping',
version='0.3.1',
description="Descripción corta del proyecto.",
long_description=readme,
author="Datos Argentina",
author_email='[email protected]',
url='https://github.com/datosgobar/series-tiempo-ar-scraping',
packages=[
'series_tiempo_ar_scraping',
],
package_dir={'series_tiempo_ar_scraping':
'series_tiempo_ar_scraping'},
include_package_data=True,
install_requires=requirements,
dependency_links=[
'git+https://github.com/datosgobar/xlseries.git#egg=xlseries',
],
entry_points={
'console_scripts': [
'etl=series_tiempo_ar_scraping.main:cli'
]
},
license="MIT license",
zip_safe=False,
keywords='series_tiempo_ar_scraping',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
],
)