Skip to content

Commit 3868f2a

Browse files
committed
version bump and moved to setuptools
1 parent 82ab2f2 commit 3868f2a

1 file changed

Lines changed: 9 additions & 5 deletions

File tree

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
"""
22
Setup file for the fsapi package
33
"""
4-
from distutils.core import setup
4+
from setuptools import setup
55

66
setup(name='fsapi',
7-
version='0.0.4',
7+
version='0.0.5',
88
description='Implementation of the Frontier Silicon API for python',
9-
# install_requires=['requests','lxml'],
9+
install_requires=['requests', 'lxml'],
1010
author='Krasimir Zhelev',
1111
author_email='krasimir.zhelev@gmail.com',
1212
packages=['fsapi'],
1313
keywords='fsapi frontier silicon',
1414
license='Apache 2',
15-
download_url='https://github.com/zhelev/python-fsapi/archive/0.0.3.zip',
16-
url='https://github.com/zhelev/python-fsapi.git')
15+
download_url='https://github.com/zhelev/python-fsapi/archive/0.0.5.zip',
16+
url='https://github.com/zhelev/python-fsapi.git',
17+
maintainer='Krasimir Zhelev',
18+
maintainer_email='krasimir.zhelev@gmail.com',
19+
zip_safe=False,
20+
include_package_data=True)

0 commit comments

Comments
 (0)