Skip to content

Commit 294311b

Browse files
committed
fix attempt 1
1 parent 40af36f commit 294311b

1 file changed

Lines changed: 12 additions & 3 deletions

File tree

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
from setuptools import setup, find_packages
22

3-
with open('requirements.txt') as f:
4-
required = f.read().splitlines()
3+
# with open('requirements.txt') as f:
4+
# required = f.read().splitlines()
55

66
setup(
77
name='wfirma',
88
version='1.0.0',
99
packages=find_packages(),
10-
install_requires=required,
10+
# install_requires=required,
11+
12+
# version='1.0.0',
13+
# url='https://github.com/mypackage.git',
14+
# author='Author Name',
15+
# author_email='author@gmail.com',
16+
# description='Description of my package',
17+
# packages=find_packages(),
18+
install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
19+
1120
# install_requires=['numpy >= 1.11.1', 'matplotlib >= 1.5.1'],
1221
)

0 commit comments

Comments
 (0)