Skip to content

Commit

Permalink
Added requirements.txt and appropriate stuff in setup.py to handle it
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed May 4, 2016
1 parent 5a5a1ab commit 7a42be0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requests
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
#!/usr/bin/env python

import os
from setuptools import setup, find_packages

with open('requirements.txt') as f:
required = f.read().splitlines()

setup(
name='python-cloudflare-v4',
version='1.1',
Expand All @@ -10,6 +14,7 @@
author_email='[email protected],[email protected]',
url='https://github.com/mahtin/python-cloudflare-v4',
packages=['cli4']+find_packages(),
install_requires=required,
entry_points={
'console_scripts': [
'cli4 = cli4.__main__:main'
Expand Down

0 comments on commit 7a42be0

Please sign in to comment.