Skip to content

Commit d46fd47

Browse files
authored
Merge pull request #27 from pbashyal-nmdp/update_for_py37
Updated for Python 3.7.
2 parents 2f934cd + a9dc479 commit d46fd47

File tree

2 files changed

+7
-50
lines changed

2 files changed

+7
-50
lines changed

Makefile

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ clean-build: ## remove build artifacts
3434
rm -fr dist/
3535
rm -fr .eggs/
3636
find . -name '*.egg-info' -exec rm -fr {} +
37-
find . -name '*.egg' -exec rm -f {} +
37+
find . -name '*.egg' -exec rm -rf {} +
3838

3939
clean-pyc: ## remove Python file artifacts
4040
find . -name '*.pyc' -exec rm -f {} +
@@ -99,21 +99,3 @@ activate: ## activate a virtual environment. Run `make venv` before activating.
9999
@echo "To activate the new virtualenv, execute the following from your shell"
100100
@echo "source $(PWD)/venv/bin/activate"
101101

102-
git-init: ## initializes a git repository. Commits and pushes to github.
103-
@echo "====================================================================="
104-
@echo "Make sure you've created a github repo 'mhalagan-nmdp/pyars'"
105-
@read -p "Continue? [Y/N] " choice; \
106-
case "$$choice" in \
107-
y | Y ) \
108-
echo "====================================================================="; \
109-
git init . ; \
110-
git add . ; \
111-
git commit -m "Initial Import" ; \
112-
git remote add origin https://github.com/mhalagan-nmdp/pyars ; \
113-
git push -u origin master; \
114-
echo "====================================================================="; \
115-
echo "Git Initialized!" \
116-
;; \
117-
* ) echo "Git NOT initialized!" ;; \
118-
esac;
119-

setup.py

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,7 @@
3232
history = history_file.read()
3333

3434
requirements = [
35-
'certifi==2018.1.18',
36-
'chardet==3.0.4',
37-
'idna==2.6',
38-
'mypy==0.560',
39-
'numpy',
40-
'pandas',
41-
'pkginfo==1.4.1',
42-
'psutil==5.4.3',
43-
'python-dateutil==2.6.1',
44-
'pytz==2018.3',
45-
'requests==2.20.0',
46-
'requests-toolbelt==0.8.0',
47-
'six==1.11.0',
48-
'tqdm==4.19.5',
49-
'typed-ast==1.1.0',
50-
'typing==3.6.4',
51-
'urllib3==1.24.2',
52-
'xlrd==1.1.0'
35+
'pandas==0.25.1'
5336
]
5437

5538

@@ -58,13 +41,13 @@
5841
]
5942

6043
setup(
61-
name='pyard',
62-
version='0.0.10',
44+
name='py-ard',
45+
version='0.0.11',
6346
description="ARD reduction for HLA with python",
6447
long_description=readme + '\n\n' + history,
65-
author="Michael Halagan",
66-
author_email='mhalagan@nmdp.org',
67-
url='https://github.com/nmdp-bioinformatics/pyARD',
48+
author="CIBMTR",
49+
author_email='cibmtr-pypi@nmdp.org',
50+
url='https://github.com/nmdp-bioinformatics/py-ard',
6851
packages=[
6952
'pyard',
7053
],
@@ -79,14 +62,6 @@
7962
'Intended Audience :: Developers',
8063
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
8164
'Natural Language :: English',
82-
"Programming Language :: Python :: 2",
83-
'Programming Language :: Python :: 2.6',
84-
'Programming Language :: Python :: 2.7',
85-
'Programming Language :: Python :: 3',
86-
'Programming Language :: Python :: 3.3',
87-
'Programming Language :: Python :: 3.4',
88-
'Programming Language :: Python :: 3.5',
89-
'Programming Language :: Python :: 3.6',
9065
'Programming Language :: Python :: 3.7',
9166
],
9267
test_suite='tests',

0 commit comments

Comments
 (0)