Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Setup and configuration for pypi publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jperezlatimes committed Apr 18, 2018
1 parent 3a38849 commit 0318ef7
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 0 deletions.
Binary file removed .DS_Store
Binary file not shown.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,6 @@ ENV/

# mypy
.mypy_cache/

# Mac system files
.DS_Store
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[bdist_wheel]
universal = 1

[metadata]
license-file = LICENSE
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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="[email protected]",
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",
)

0 comments on commit 0318ef7

Please sign in to comment.