File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11"""
22Setup file for the fsapi package
33"""
4- from distutils . core import setup
4+ from setuptools import setup
55
66setup (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 )
You can’t perform that action at this time.
0 commit comments