Skip to content

Commit

Permalink
pypi config setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-kleiner committed Jun 17, 2018
1 parent fe2f8b7 commit 709f81c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
__pycache__
build
dist
*egg-info

pgdata/*
!pgdata/.mkdir
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from setuptools import setup
from os import path

here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open('README.md') as f:
long_description = f.read()

setup(
Expand All @@ -12,6 +10,7 @@
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/StoicPerlman/binance-db',
download_url = 'https://github.com/StoicPerlman/binance-db/archive/0.0.1.tar.gz',
author='Sam Kleiner',
author_email='[email protected]',
classifiers=[
Expand Down

0 comments on commit 709f81c

Please sign in to comment.