Skip to content

Commit

Permalink
😎 Modernises setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
guyzmo committed Aug 27, 2019
1 parent a258b0c commit 5f6eeea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions git_repo/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#!/usr/bin/env python
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
#!/usr/bin/env python3
# encoding: utf-8
from setuptools import setup, find_packages

import sys, os

import pip

from setuptools import setup, find_packages, dist
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from distutils.core import Command
from distutils.core import setup
Expand Down Expand Up @@ -102,7 +101,6 @@ def run_tests(self):
'pytest',
'pytest-cov',
'pytest-sugar',
'pytest-catchlog',
'pytest-datadir-ng',
'testfixtures',
'mock',
Expand Down Expand Up @@ -138,10 +136,10 @@ def run_tests(self):
author_email='[email protected]',
setup_requires=[
'setuptools_scm',
'setuptools-markdown',
'wheel>=0.25.0',
],
long_description_markdown_filename='README.md',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
use_scm_version={'version_scheme':'guess-next-dev'},
include_package_data = True,
install_requires=requirements,
Expand Down

0 comments on commit 5f6eeea

Please sign in to comment.