Skip to content

Commit

Permalink
fix pypi problems
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelcamara committed Apr 15, 2019
1 parent 04ad14d commit 0061af1
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
# -*- coding: utf-8 -*-
from io import open
from setuptools import setup

setup(
name='hotxlfp',
version='0.0.1',
version='0.0.2',
packages=['hotxlfp',],
license='MIT',
test_suite='tests',
author='Leonel Câmara',
author_email='[email protected]',
url='https://github.com/aidhound/hotxlfp',
download_url='https://github.com/aidhound/hotxlfp/archive/0.0.2.tar.gz',
keywords=['excel', 'formula', 'parser'],
install_requires=open('requirements.txt').readlines(),
long_description=open('README.md').read(),
install_requires=['ply', 'python-dateutil'],
long_description='\n'.join(l for l in open('README.md', encoding="utf-8").readlines() if not l.startswith('[!')),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand Down

0 comments on commit 0061af1

Please sign in to comment.