diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 7bbc71c..f8b3e15 100644 --- a/.gitignore +++ b/.gitignore @@ -99,3 +99,6 @@ ENV/ # mypy .mypy_cache/ + +# Mac system files +.DS_Store diff --git a/__init__.py b/py-bns/__init__.py similarity index 100% rename from __init__.py rename to py-bns/__init__.py diff --git a/py-bns.py b/py-bns/py-bns.py similarity index 100% rename from py-bns.py rename to py-bns/py-bns.py diff --git a/py-bns.py.bak b/py-bns/py-bns.py.bak similarity index 100% rename from py-bns.py.bak rename to py-bns/py-bns.py.bak diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..a9f1547 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license-file = LICENSE diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..809541a --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup, find_packages + +setup( + name="pyBNS", + version="0.1.0", + packages=find_packages(), + install_requires=[ + 'futures; python_version == "2.7"', + 'future; python_version == "2.7"', + 'urllib3; python_version == "2.7"' + ], + author="Vanessa Martinez", + author_email="datadesk@latimes.com", + description="A wrapper for the Bloomberg News Service API", + long_description="Allows python applications to easily connect and interact with the Bloomberg News Service API.", + url="https://github.com/datadesk/py-bns", + license="MIT License", +)