This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Setup and configuration for pypi publishing
- Loading branch information
1 parent
3a38849
commit 0318ef7
Showing
7 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[bdist_wheel] | ||
universal = 1 | ||
|
||
[metadata] | ||
license-file = LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
) |