mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-07 00:58:14 +00:00
use minimum dependencies rather than specific hashes. (#6)
* use minimum dependencies rather than specific hashes. * install specific version of pytest and install pylint. * python 3.7 still not working.
This commit is contained in:
4
setup.py
4
setup.py
@@ -1,6 +1,6 @@
|
||||
import io # for python2
|
||||
from os import path
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
try: # for pip >= 10
|
||||
from pip._internal.req import parse_requirements
|
||||
except ImportError: # for pip <= 9.0.3
|
||||
@@ -32,7 +32,7 @@ setup(
|
||||
license='Apache License, Version 2.0',
|
||||
long_description=long_description,
|
||||
name='rfd',
|
||||
packages=['rfd'],
|
||||
packages=find_packages(),
|
||||
url='https://github.com/davegallant/rfd_cli',
|
||||
version=version,
|
||||
)
|
||||
|
Reference in New Issue
Block a user