Skip to content

Commit

Permalink
Add dependencies to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefGokhlayeh committed Sep 29, 2018
1 parent fe8ae09 commit 8aacbc5
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
from setuptools import setup

with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()

with open('requirements.txt', 'r') as fh:
install_requires = fh.readlines()

setup(name='autofff',
version='0.2',
description='Auto-generate FFF fake definitions for C API header files',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/FreeGeronimo/autofff',
author='Andreas Baulig',
author_email='free.geronimo@hotmail.de',
license='MIT',
packages=['autofff'],
zip_safe=False,
classifiers=[
version='0.2',
description='Auto-generate FFF fake definitions for C API header files',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/FreeGeronimo/autofff',
author='Andreas Baulig',
author_email='free.geronimo@hotmail.de',
license='MIT',
packages=['autofff'],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
])
],
install_requires=install_requires)

0 comments on commit 8aacbc5

Please sign in to comment.